From 8ad95acd4daa3ce198c964c94723931e62c04920 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sun, 19 Feb 2012 19:47:09 +0000 Subject: [PATCH] r111795: update line to remove bogus $db argument --- maintenance/populateRevisionSha1.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/populateRevisionSha1.php b/maintenance/populateRevisionSha1.php index 48bcf36e55..144133c3a7 100644 --- a/maintenance/populateRevisionSha1.php +++ b/maintenance/populateRevisionSha1.php @@ -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++; } } -- 2.20.1