Revert merge of DismissableSiteNotice into the core (r41679 and subsequent edits...
[lhc/web/wiklou.git] / maintenance / refreshImageCount.php
index 15ce2b9..14f842b 100644 (file)
@@ -1,16 +1,20 @@
 <?php
-
-// Quickie hack; patch-ss_images.sql uses variables which don't
-// replicate properly.
+/**
+ * Quickie hack; patch-ss_images.sql uses variables which don't
+ * replicate properly.
+ *
+ * @file
+ * @ingroup Maintenance
+ */
 
 require_once( "commandLine.inc" );
 
-$dbw =& wfGetDB( DB_MASTER );
+$dbw = wfGetDB( DB_MASTER );
 
 // Load the current value from the master
 $count = $dbw->selectField( 'site_stats', 'ss_images' );
 
-echo "$wgDBname: forcing ss_images to $count\n";
+echo wfWikiID().": forcing ss_images to $count\n";
 
 // First set to NULL so that it changes on the master
 $dbw->update( 'site_stats',
@@ -22,4 +26,4 @@ $dbw->update( 'site_stats',
        array( 'ss_images' => $count ),
        array( 'ss_row_id' => 1 ) );
 
-?>
\ No newline at end of file
+