From cecb985bee3bdd252e1b8dc0bd500b37cd52be01 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 16 May 2007 20:58:53 +0000 Subject: Aktualisierung auf MediaWiki 1.10.0 Plugins angepasst und verbessert kleine Korrekturen am Design --- maintenance/updateArticleCount.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'maintenance/updateArticleCount.php') diff --git a/maintenance/updateArticleCount.php b/maintenance/updateArticleCount.php index 112274d2..03c7939c 100644 --- a/maintenance/updateArticleCount.php +++ b/maintenance/updateArticleCount.php @@ -4,8 +4,7 @@ * Maintenance script to provide a better count of the number of articles * and update the site statistics table, if desired * - * @package MediaWiki - * @subpackage Maintenance + * @addtogroup Maintenance * @author Rob Church */ @@ -28,7 +27,7 @@ if( $result !== false ) { echo( "found {$result}.\n" ); if( isset( $options['update'] ) && $options['update'] ) { echo( "Updating site statistics table... " ); - $dbw =& wfGetDB( DB_MASTER ); + $dbw = wfGetDB( DB_MASTER ); $dbw->update( 'site_stats', array( 'ss_good_articles' => $result ), array( 'ss_row_id' => 1 ), __METHOD__ ); echo( "done.\n" ); } else { -- cgit v1.2.3-54-g00ecf