From: Antoine Musso Date: Mon, 15 Aug 2005 21:39:30 +0000 (+0000) Subject: Fix #2393: incorrect MIME type for atom feeds X-Git-Tag: 1.6.0~1948 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=9e65c90385e78219e65ccdf75c403e51402d1307;p=lhc%2Fweb%2Fwiklou.git Fix #2393: incorrect MIME type for atom feeds ref: http://www.atomenabled.org/developers/syndication/atom-format-spec.php#rfc.section.7 --- diff --git a/includes/OutputPage.php b/includes/OutputPage.php index df6ff66a8f..b549c6d75f 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -880,7 +880,7 @@ class OutputPage { $link = $wgRequest->escapeAppendQuery( 'feed=rss' ); $ret .= "\n"; $link = $wgRequest->escapeAppendQuery( 'feed=atom' ); - $ret .= "\n"; + $ret .= "\n"; } return $ret;