From 9e65c90385e78219e65ccdf75c403e51402d1307 Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Mon, 15 Aug 2005 21:39:30 +0000 Subject: [PATCH] Fix #2393: incorrect MIME type for atom feeds ref: http://www.atomenabled.org/developers/syndication/atom-format-spec.php#rfc.section.7 --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.20.1