From eccd0eb4be996c0485a59a1b6cc2ac5adc126752 Mon Sep 17 00:00:00 2001 From: westi Date: Wed, 30 Dec 2009 17:08:23 +0000 Subject: [PATCH] Don't pass deprecated argument to get_bloginfo() in get_index_rel_link() also observer user trailing slash preferences. Fixes #11607 props nacin and miqrogroove. git-svn-id: http://svn.automattic.com/wordpress/trunk@12588 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 895e3b71d..bd9e6dc96 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -1161,7 +1161,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 ); }