From 9148811f646831e64743b338855df76f06ed958d Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sat, 16 Dec 2006 21:53:34 +0000 Subject: [PATCH] Strict standards. --- includes/SpecialMostlinked.php | 8 ++++---- includes/SpecialShortpages.php | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/includes/SpecialMostlinked.php b/includes/SpecialMostlinked.php index 4df53aec93..2794ecbbb5 100644 --- a/includes/SpecialMostlinked.php +++ b/includes/SpecialMostlinked.php @@ -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(); } } diff --git a/includes/SpecialShortpages.php b/includes/SpecialShortpages.php index 34b3505bbd..0073f88aca 100644 --- a/includes/SpecialShortpages.php +++ b/includes/SpecialShortpages.php @@ -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 ); } } -- 2.20.1