From: Victor Vasiliev Date: Sat, 8 Dec 2007 12:53:01 +0000 (+0000) Subject: Fix a copy-paste bug X-Git-Tag: 1.31.0-rc.0~50491 X-Git-Url: http://git.cyclocoop.org/%24action?a=commitdiff_plain;h=0fa9c0d01b164826ce3a2c82e48c3baaed4b123b;p=lhc%2Fweb%2Fwiklou.git Fix a copy-paste bug --- diff --git a/includes/SpecialRecentchangeslinked.php b/includes/SpecialRecentchangeslinked.php index bea3878b2e..df7335ad61 100644 --- a/includes/SpecialRecentchangeslinked.php +++ b/includes/SpecialRecentchangeslinked.php @@ -183,14 +183,8 @@ $GROUPBY htmlspecialchars( wfMsgForContent('recentchangeslinked') ), $wgTitle->getFullUrl() ); require_once( "SpecialRecentchanges.php" ); - rcDoOutputFeed( $rchanges, $feed ); - $wgOut->disable(); - $feed->outHeader(); - foreach( $feedItems as &$item ) { - $feed->outItem( $item ); - } - $feed->outFooter(); + rcDoOutputFeed( $rchanges, $feed ); } }