X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FpopulateLogUsertext.php;h=ec3c4722cb201d2744da8dc076bae4b23b710da9;hb=e2a7988178698b4369c7963d20610ee622db3ee7;hp=96cb1ec9db83042805cc76531daae38e89bdfb75;hpb=05b8af8b91dac965c67571668187d1dc2511ae03;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/populateLogUsertext.php b/maintenance/populateLogUsertext.php index 96cb1ec9db..ec3c4722cb 100644 --- a/maintenance/populateLogUsertext.php +++ b/maintenance/populateLogUsertext.php @@ -35,7 +35,7 @@ require_once __DIR__ . '/Maintenance.php'; class PopulateLogUsertext extends LoggedUpdateMaintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Populates the log_user_text field"; + $this->addDescription( 'Populates the log_user_text field' ); $this->setBatchSize( 100 ); } @@ -67,12 +67,12 @@ class PopulateLogUsertext extends LoggedUpdateMaintenance { $res = $db->select( array( 'logging', 'user' ), array( 'log_id', 'user_name' ), $cond, __METHOD__ ); - $db->begin( __METHOD__ ); + $this->beginTransaction( $db, __METHOD__ ); foreach ( $res as $row ) { $db->update( 'logging', array( 'log_user_text' => $row->user_name ), array( 'log_id' => $row->log_id ), __METHOD__ ); } - $db->commit( __METHOD__ ); + $this->commitTransaction( $db, __METHOD__ ); $blockStart += $this->mBatchSize; $blockEnd += $this->mBatchSize; wfWaitForSlaves();