From 2f9fe257092228018531fc53ab2fb418317644c6 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Thu, 14 Apr 2011 19:01:04 +0000 Subject: [PATCH] Update undelete.php to use short option aliases. People using --u and --r will need to change either to -u or --user for --u and to -r or --reason for --r. --- maintenance/undelete.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maintenance/undelete.php b/maintenance/undelete.php index f7ea2a296f..7213d096a9 100644 --- a/maintenance/undelete.php +++ b/maintenance/undelete.php @@ -27,16 +27,16 @@ class Undelete extends Maintenance { public function __construct() { parent::__construct(); $this->mDescription = "Undelete a page"; - $this->addOption( 'u', 'The user to perform the undeletion', false, true ); - $this->addOption( 'r', 'The reason to undelete', false, true ); + $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' ); } public function execute() { global $wgUser; - $user = $this->getOption( 'u', 'Command line script' ); - $reason = $this->getOption( 'r', '' ); + $user = $this->getOption( 'user', 'Command line script' ); + $reason = $this->getOption( 'reason', '' ); $pageName = $this->getArg(); $title = Title::newFromText( $pageName ); -- 2.20.1