X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Fundelete.php;h=861f5ed06cd480427398712d20e9fcc2343b50d8;hb=1f2706b49939bfc85ec5abc8ccc24aacd938eed0;hp=adebd277aa9283325ce6dd29fb9620294bdbf963;hpb=914e7e2b5d34104bd9ae800f632c68ddc6eecef1;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/undelete.php b/maintenance/undelete.php index adebd277aa..861f5ed06c 100644 --- a/maintenance/undelete.php +++ b/maintenance/undelete.php @@ -26,7 +26,7 @@ require_once __DIR__ . '/Maintenance.php'; class Undelete extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Undelete a page"; + $this->addDescription( 'Undelete a page' ); $this->addOption( 'user', 'The user to perform the undeletion', false, true, 'u' ); $this->addOption( 'reason', 'The reason to undelete', false, true, 'r' ); $this->addArg( 'pagename', 'Page to undelete' ); @@ -35,7 +35,7 @@ class Undelete extends Maintenance { public function execute() { global $wgUser; - $user = $this->getOption( 'user', 'Command line script' ); + $user = $this->getOption( 'user', false ); $reason = $this->getOption( 'reason', '' ); $pageName = $this->getArg(); @@ -43,7 +43,11 @@ class Undelete extends Maintenance { if ( !$title ) { $this->error( "Invalid title", true ); } - $wgUser = User::newFromName( $user ); + if ( $user === false ) { + $wgUser = User::newSystemUser( 'Command line script', array( 'steal' => true ) ); + } else { + $wgUser = User::newFromName( $user ); + } if ( !$wgUser ) { $this->error( "Invalid username", true ); }