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

git-svn-id: http://svn.automattic.com/wordpress/trunk@13650 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-03-10 20:10:32 +00:00
parent 363a752373
commit f8c42e40d7

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