From 5c5195845f089bdbc92496798e04aa306af8ba22 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 8 Aug 2008 21:02:52 +0000 Subject: [PATCH] Cleanup to r38831 -- don't check _just_ 'rss' and 'atom', take anything. :) --- includes/OutputPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/OutputPage.php b/includes/OutputPage.php index 465d79871a..e985cb795a 100644 --- a/includes/OutputPage.php +++ b/includes/OutputPage.php @@ -1493,7 +1493,7 @@ class OutputPage { global $wgOverrideSiteFeed, $wgSitename; $rctitle = SpecialPage::getTitleFor( 'Recentchanges' ); - if ( isset( $wgOverrideSiteFeed['rss'] ) || isset( $wgOverrideSiteFeed['atom'] ) ) { + if ( $wgOverrideSiteFeed ) { foreach ( $wgOverrideSiteFeed as $type => $feedUrl ) { $tags[] = $this->feedLink ( $type, -- 2.20.1