X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcleanupCaps.php;h=693125994cd24045b426b573f589b789b1491773;hb=32e56eefaa1d9c0a832f9e32db4f9bdaad28f02e;hp=e0a0f494fb4aac0748f70a3edb750c1b476ba3a6;hpb=3d0b4fea3dfb94610be0f0e9d8ff1cb24f106707;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/cleanupCaps.php b/maintenance/cleanupCaps.php index e0a0f494fb..693125994c 100644 --- a/maintenance/cleanupCaps.php +++ b/maintenance/cleanupCaps.php @@ -42,7 +42,7 @@ class CapsCleanup extends TableCleanup { public function __construct() { parent::__construct(); - $this->mDescription = "Script to cleanup capitalization"; + $this->addDescription( 'Script to cleanup capitalization' ); $this->addOption( 'namespace', 'Namespace number to run caps cleanup on', false, true ); } @@ -53,16 +53,16 @@ class CapsCleanup extends TableCleanup { $this->error( "\$wgCapitalLinks is on -- no need for caps links cleanup.", true ); } - $this->user = User::newSystemUser( 'Conversion script', array( 'steal' => true ) ); + $this->user = User::newSystemUser( 'Conversion script', [ 'steal' => true ] ); $this->namespace = intval( $this->getOption( 'namespace', 0 ) ); $this->dryrun = $this->hasOption( 'dry-run' ); - $this->runTable( array( + $this->runTable( [ 'table' => 'page', - 'conds' => array( 'page_namespace' => $this->namespace ), + 'conds' => [ 'page_namespace' => $this->namespace ], 'index' => 'page_id', - 'callback' => 'processRow' ) ); + 'callback' => 'processRow' ] ); } protected function processRow( $row ) { @@ -92,7 +92,7 @@ class CapsCleanup extends TableCleanup { } else { $mp = new MovePage( $current, $target ); $status = $mp->move( $this->user, 'Converting page titles to lowercase', true ); - $ok = $status->isOK() ? 'OK' : $status->getWikiText(); + $ok = $status->isOK() ? 'OK' : $status->getWikiText( false, false, 'en' ); $this->output( "\"$display\" -> \"$targetDisplay\": $ok\n" ); } if ( $ok === true ) {