X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=blobdiff_plain;f=maintenance%2FrefreshImageMetadata.php;h=88767de2d13322366a41c74b81c5b809b7b615bf;hb=6e9b4f0e9ce4ccd6089c18b205065ef7fa077484;hp=01fb15eb92943d233b8b0aa05d94090685e85a56;hpb=5d97e895562ec09d9233e199c21f5af7c6d58c9f;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/refreshImageMetadata.php b/maintenance/refreshImageMetadata.php index 01fb15eb92..88767de2d1 100644 --- a/maintenance/refreshImageMetadata.php +++ b/maintenance/refreshImageMetadata.php @@ -104,15 +104,15 @@ class RefreshImageMetadata extends Maintenance { $conds = $this->getConditions( $dbw ); // For the WHERE img_name > 'foo' condition that comes after doing a batch - $conds2 = array(); + $conds2 = []; if ( $start !== false ) { $conds2[] = 'img_name >= ' . $dbw->addQuotes( $start ); } - $options = array( + $options = [ 'LIMIT' => $this->mBatchSize, 'ORDER BY' => 'img_name ASC', - ); + ]; do { $res = $dbw->select( @@ -172,7 +172,7 @@ class RefreshImageMetadata extends Maintenance { } } } - $conds2 = array( 'img_name > ' . $dbw->addQuotes( $row->img_name ) ); + $conds2 = [ 'img_name > ' . $dbw->addQuotes( $row->img_name ) ]; wfWaitForSlaves(); } while ( $res->numRows() === $this->mBatchSize ); @@ -193,7 +193,7 @@ class RefreshImageMetadata extends Maintenance { * @return array */ function getConditions( $dbw ) { - $conds = array(); + $conds = []; $end = $this->getOption( 'end', false ); $mime = $this->getOption( 'mime', false );