From 6c90d0770cb0d2e09c8396190589669e031f20c6 Mon Sep 17 00:00:00 2001 From: Peter Westwood 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: https://develop.svn.wordpress.org/trunk@12588 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 895e3b71da..bd9e6dc961 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 ); }