X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=maintenance%2Fprotect.php;h=f6bb2532024ea2d2d79ec9502c805b76387aaad5;hp=4a3148ad712e2066f5c0a2d78744164e52dfa12c;hb=f5b9af121a07ecc674a63cbc65c3a01e9fa7d785;hpb=480ab87dbc2974ad9465af2808f21bf83397142e diff --git a/maintenance/protect.php b/maintenance/protect.php index 4a3148ad71..f6bb253202 100644 --- a/maintenance/protect.php +++ b/maintenance/protect.php @@ -41,8 +41,8 @@ class Protect extends Maintenance { } public function execute() { - $userName = $this->getOption( 'u', false ); - $reason = $this->getOption( 'r', '' ); + $userName = $this->getOption( 'user', false ); + $reason = $this->getOption( 'reason', '' ); $cascade = $this->hasOption( 'cascade' ); @@ -54,7 +54,7 @@ class Protect extends Maintenance { } if ( $userName === false ) { - $user = User::newSystemUser( 'Maintenance script', array( 'steal' => true ) ); + $user = User::newSystemUser( 'Maintenance script', [ 'steal' => true ] ); } else { $user = User::newFromName( $userName ); } @@ -63,14 +63,14 @@ class Protect extends Maintenance { } // @todo FIXME: This is reset 7 lines down. - $restrictions = array( 'edit' => $protection, 'move' => $protection ); + $restrictions = [ 'edit' => $protection, 'move' => $protection ]; $t = Title::newFromText( $this->getArg() ); if ( !$t ) { $this->error( "Invalid title", true ); } - $restrictions = array(); + $restrictions = []; foreach ( $t->getRestrictionTypes() as $type ) { $restrictions[$type] = $protection; } @@ -79,7 +79,7 @@ class Protect extends Maintenance { $this->output( "Updating protection status... " ); $page = WikiPage::factory( $t ); - $status = $page->doUpdateRestrictions( $restrictions, array(), $cascade, $reason, $user ); + $status = $page->doUpdateRestrictions( $restrictions, [], $cascade, $reason, $user ); if ( $status->isOK() ) { $this->output( "done\n" );