Don't replace Link headers. Update phpdoc. see #10604

git-svn-id: https://develop.svn.wordpress.org/trunk@13650 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2010-03-10 20:10:32 +00:00
parent 0b9d0bbfe0
commit 30bb2a68a1
1 changed files with 3 additions and 3 deletions

View File

@ -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);
}
?>