Ticket #11734: comment-template.php.patch
File comment-template.php.patch, 912 bytes (added by , 14 years ago) |
---|
-
wp-includes/comment-template.php
750 750 xmlns:dc="http://purl.org/dc/elements/1.1/" 751 751 xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/"> 752 752 <rdf:Description rdf:about="'; 753 the_permalink();753 str_replace('--', '--', the_permalink()); 754 754 echo '"'."\n"; 755 755 echo ' dc:identifier="'; 756 the_permalink();756 str_replace('--', '--', the_permalink()); 757 757 echo '"'."\n"; 758 758 echo ' dc:title="'.str_replace('--', '--', wptexturize(strip_tags(get_the_title()))).'"'."\n"; 759 echo ' trackback:ping="'. get_trackback_url().'"'." />\n";759 echo ' trackback:ping="'.str_replace('--', '--', get_trackback_url()).'"'." />\n"; 760 760 echo '</rdf:RDF>'; 761 761 } 762 762 }