Remove unused variables from SpecialAllpages::showToplevel()
authorAlexandre Emsenhuber <mediawiki@emsenhuber.ch>
Wed, 14 May 2014 07:12:45 +0000 (09:12 +0200)
committerAlexandre Emsenhuber <mediawiki@emsenhuber.ch>
Wed, 14 May 2014 07:12:45 +0000 (09:12 +0200)
Follow-up If750cad676 (71fe7c5)

Change-Id: I95bf953b0eb742e94ddff1b6adf6d784fb5dc87c

includes/specials/SpecialAllpages.php

index e4fc54b..ad92298 100644 (file)
@@ -156,32 +156,11 @@ class SpecialAllpages extends IncludableSpecialPage {
         * @param bool $hideredirects Dont show redirects (default false)
         */
        function showToplevel( $namespace = NS_MAIN, $from = '', $to = '', $hideredirects = false ) {
-               $output = $this->getOutput();
-
-               # TODO: Either make this *much* faster or cache the title index points
-               # in the querycache table.
-
-               $dbr = wfGetDB( DB_SLAVE );
-               $out = "";
-               $where = array( 'page_namespace' => $namespace );
-
-               if ( $hideredirects ) {
-                       $where['page_is_redirect'] = 0;
-               }
-
                $from = Title::makeTitleSafe( $namespace, $from );
                $to = Title::makeTitleSafe( $namespace, $to );
                $from = ( $from && $from->isLocal() ) ? $from->getDBkey() : null;
                $to = ( $to && $to->isLocal() ) ? $to->getDBkey() : null;
 
-               if ( isset( $from ) ) {
-                       $where[] = 'page_title >= ' . $dbr->addQuotes( $from );
-               }
-
-               if ( isset( $to ) ) {
-                       $where[] = 'page_title <= ' . $dbr->addQuotes( $to );
-               }
-
                $this->showChunk( $namespace, $from, $to, $hideredirects );
        }