Fix more total breakage
authorAaron Schulz <aaron@users.mediawiki.org>
Tue, 17 Jun 2008 00:17:12 +0000 (00:17 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Tue, 17 Jun 2008 00:17:12 +0000 (00:17 +0000)
includes/specials/Newpages.php
includes/specials/Recentchangeslinked.php

index 06252a8..3146367 100644 (file)
@@ -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 ) {
index 12a1a23..f3101f5 100644 (file)
@@ -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;