From 89c369ee5b86c0d6e5c5ed21ef4c14a1ed17f48c Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Tue, 17 Jun 2008 00:17:12 +0000 Subject: [PATCH] Fix more total breakage --- includes/specials/Newpages.php | 3 +-- includes/specials/Recentchangeslinked.php | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/includes/specials/Newpages.php b/includes/specials/Newpages.php index 06252a822d..31463674f0 100644 --- a/includes/specials/Newpages.php +++ b/includes/specials/Newpages.php @@ -267,8 +267,7 @@ class NewPagesForm { * @param string $type */ protected function feed( $type ) { - require_once 'SpecialRecentchanges.php'; - + require_once('Recentchanges.php'); global $wgFeed, $wgFeedClasses; if ( !$wgFeed ) { diff --git a/includes/specials/Recentchangeslinked.php b/includes/specials/Recentchangeslinked.php index 12a1a23960..f3101f57ac 100644 --- a/includes/specials/Recentchangeslinked.php +++ b/includes/specials/Recentchangeslinked.php @@ -8,7 +8,7 @@ /** * */ -require_once( 'SpecialRecentchanges.php' ); +require_once( 'Recentchanges.php' ); /** * Entrypoint @@ -151,7 +151,6 @@ function wfSpecialRecentchangeslinked( $par = NULL ) { $rchanges[] = $obj; } } - require_once( "SpecialRecentchanges.php" ); $wgOut->disable(); rcDoOutputFeed( $rchanges, $feed ); return; -- 2.20.1