Strip HTML from titles for autodiscovery RDF. From Kelson.

git-svn-id: https://develop.svn.wordpress.org/trunk@238 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2003-06-19 07:06:32 +00:00
parent f066d38121
commit 5f5d4ba157
1 changed files with 1 additions and 1 deletions

View File

@ -1106,7 +1106,7 @@ function trackback_rdf($timezone = 0) {
echo ' dc:identifier="';
permalink_single();
echo '"'."\n";
echo ' dc:title="'.addslashes(get_the_title()).'"'."\n";
echo ' dc:title="'.addslashes(strip_tags(get_the_title())).'"'."\n";
echo ' trackback:ping="'.trackback_url(0).'"'." />\n";
echo '</rdf:RDF>';
}