From ba31bedcaee83a3e4a5af72fbc80c2e644f255f3 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 15 Apr 2009 17:12:31 +0000 Subject: [PATCH] Escape title. Props GamerZ. fixes #9540 git-svn-id: http://svn.automattic.com/wordpress/trunk@10936 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/link-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index 9ca939a92..bcf16c562 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -1094,7 +1094,7 @@ function start_post_rel_link($title = '%title', $in_same_cat = false, $excluded_ * @return string */ function get_index_rel_link() { - $link = "\n"; + $link = "\n"; return apply_filters( "index_rel_link", $link ); }