added PPCustomFrame classes to restore ability to use replaceVariables with a custom...
[lhc/web/wiklou.git] / maintenance / refreshImageCount.php
index 88ac3c5..14f842b 100644 (file)
@@ -1,11 +1,15 @@
 <?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' );
@@ -22,4 +26,4 @@ $dbw->update( 'site_stats',
        array( 'ss_images' => $count ),
        array( 'ss_row_id' => 1 ) );
 
-?>
+