r111795: update line to remove bogus $db argument
authorAaron Schulz <aaron@users.mediawiki.org>
Sun, 19 Feb 2012 19:47:09 +0000 (19:47 +0000)
committerAaron Schulz <aaron@users.mediawiki.org>
Sun, 19 Feb 2012 19:47:09 +0000 (19:47 +0000)
maintenance/populateRevisionSha1.php

index 48bcf36..144133c 100644 (file)
@@ -83,7 +83,7 @@ class PopulateRevisionSha1 extends LoggedUpdateMaintenance {
 
                        $db->begin();
                        foreach ( $res as $row ) {
-                               if ( $this->upgradeRow( $row, $db, $table, $idCol, $prefix ) ) {
+                               if ( $this->upgradeRow( $row, $table, $idCol, $prefix ) ) {
                                        $count++;
                                }
                        }