X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FpopulatePPSortKey.php;h=7e3c2c3d25126a144dc55e33a885d6569c696bef;hb=32199ac8bc293efc5cbd41c3af7fe1055d04d11c;hp=fd7974dabf6ecfe63a0f4f72e6f54e75091ebdfb;hpb=9f0d59cd8e456c04c7d332122e4b95be54960bec;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/populatePPSortKey.php b/maintenance/populatePPSortKey.php index fd7974dabf..7e3c2c3d25 100644 --- a/maintenance/populatePPSortKey.php +++ b/maintenance/populatePPSortKey.php @@ -43,6 +43,7 @@ class PopulatePPSortKey extends LoggedUpdateMaintenance { $lastPageValue = 0; $editedRowCount = 0; + $this->output( "Populating page_props.pp_sortkey...\n" ); while ( true ) { $conditions = [ 'pp_sortkey IS NULL' ]; if ( $lastPageValue !== 0 ) { @@ -93,7 +94,7 @@ class PopulatePPSortKey extends LoggedUpdateMaintenance { $lastProp = $row->pp_propname; } - $this->output( "Done!\n" ); + $this->output( "Populating page_props.pp_sortkey complete.\n" ); } protected function getUpdateKey() {