From: Brion Vibber Date: Tue, 29 Aug 2006 11:43:56 +0000 (+0000) Subject: * (bug 7109) Fix Atom feed version number in header links X-Git-Tag: 1.31.0-rc.0~55886 X-Git-Url: http://git.cyclocoop.org//%22%22.str_replace%28%27%22%27%2C?a=commitdiff_plain;h=293c3ceca2d1c3de8c32956ee64797e81ee297bd;p=lhc%2Fweb%2Fwiklou.git * (bug 7109) Fix Atom feed version number in header links http://bugzilla.wikimedia.org/attachment.cgi?id=2268&action=view --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 4636a78499..c88fb51c9b 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -155,6 +155,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN Limited to $wgMaxUploadSize (default:100MB); URL upload is limited to sysops by default * (bug 832) Return to user page after emailing a user * (bug 366) Add local-system-timezone equivalents for date/time variables +* (bug 7109) Fix Atom feed version number in header links == Languages updated == diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 2e02c14636..00867701a7 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1040,7 +1040,7 @@ class OutputPage { $link = $wgRequest->escapeAppendQuery( 'feed=rss' ); $ret .= "\n"; $link = $wgRequest->escapeAppendQuery( 'feed=atom' ); - $ret .= "\n"; + $ret .= "\n"; } return $ret;