From 30bb2a68a16f3b9b151a016929c615a24259686b Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 10 Mar 2010 20:10:32 +0000 Subject: [PATCH] Don't replace Link headers. Update phpdoc. see #10604 git-svn-id: https://develop.svn.wordpress.org/trunk@13650 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/link-template.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/link-template.php b/wp-includes/link-template.php index c95fb8ce20..53a2dc84ef 100644 --- a/wp-includes/link-template.php +++ b/wp-includes/link-template.php @@ -2053,9 +2053,9 @@ function wp_ajaxurl() { /** * Return a shortlink for a post, page, attachment, or blog. * - * Shortlinks are not supported by default. A plugin is required to get shortlink support. * This function exists to provide a shortlink tag that all themes and plugins can target. A plugin must hook in to - * provide the actual shortlinks. Plugins can short circuit this function via the pre_get_shortlink filter or filter the output + * provide the actual shortlinks. Default shortlink support is limited to providing ?p= style links for posts. + * Plugins can short circuit this function via the pre_get_shortlink filter or filter the output * via the get_shortlink filter. * * @since 3.0.0. @@ -2126,7 +2126,7 @@ function wp_shortlink_header() { if ( empty($shortlink) ) return; - header('Link: <' . $shortlink . '>; rel=shortlink'); + header('Link: <' . $shortlink . '>; rel=shortlink', false); } ?>