Strict standards.
authorAntoine Musso <hashar@users.mediawiki.org>
Sat, 16 Dec 2006 21:53:34 +0000 (21:53 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Sat, 16 Dec 2006 21:53:34 +0000 (21:53 +0000)
includes/SpecialMostlinked.php
includes/SpecialShortpages.php

index 4df53ae..2794ecb 100644 (file)
@@ -44,12 +44,12 @@ class MostlinkedPage extends QueryPage {
        /**
         * Pre-fill the link cache
         */
-       function preprocessResults( &$dbr, $res ) {
-               if( $dbr->numRows( $res ) > 0 ) {
+       function preprocessResults( &$db, &$res ) {
+               if( $db->numRows( $res ) > 0 ) {
                        $linkBatch = new LinkBatch();
-                       while( $row = $dbr->fetchObject( $res ) )
+                       while( $row = $db->fetchObject( $res ) )
                                $linkBatch->addObj( Title::makeTitleSafe( $row->namespace, $row->title ) );
-                       $dbr->dataSeek( $res, 0 );
+                       $db->dataSeek( $res, 0 );
                        $linkBatch->execute();
                }
        }
index 34b3505..0073f88 100644 (file)
@@ -43,16 +43,16 @@ class ShortPagesPage extends QueryPage {
                        WHERE page_namespace=".NS_MAIN." AND page_is_redirect=0";
        }
 
-       function preprocessResults( &$dbo, $res ) {
+       function preprocessResults( &$db, &$res ) {
                # There's no point doing a batch check if we aren't caching results;
                # the page must exist for it to have been pulled out of the table
                if( $this->isCached() ) {
                        $batch = new LinkBatch();
-                       while( $row = $dbo->fetchObject( $res ) )
+                       while( $row = $db->fetchObject( $res ) )
                                $batch->addObj( Title::makeTitleSafe( $row->namespace, $row->title ) );
                        $batch->execute();
-                       if( $dbo->numRows( $res ) > 0 )
-                               $dbo->dataSeek( $res, 0 );
+                       if( $db->numRows( $res ) > 0 )
+                               $db->dataSeek( $res, 0 );
                }
        }