Fix regression in r52174 where parameter was not passed to MediaWiki:sp-contributions...
[lhc/web/wiklou.git] / maintenance / deleteBatch.php
index 6e44d63..6946b0c 100644 (file)
@@ -9,21 +9,35 @@
  *     <reason> is the delete reason
  *     <interval> is the number of seconds to sleep for after each delete
  *
- * @file
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * http://www.gnu.org/copyleft/gpl.html
+ *
  * @ingroup Maintenance
  */
  
-require_once( "Maintenance.php" );
+require_once( dirname(__FILE__) . '/Maintenance.php' );
 
 class DeleteBatch extends Maintenance {
        
        public function __construct() {
                parent::__construct();
                $this->mDescription = "Deletes a batch of pages";
-               $this->addParam( 'u', "User to perform deletion", false, true );
-               $this->addParam( 'r', "Reason to delete page", false, true );
-               $this->addParam( 'i', "Interval to sleep between deletions" );
-               $this->addArgs( array( 'listfile' ) );
+               $this->addOption( 'u', "User to perform deletion", false, true );
+               $this->addOption( 'r', "Reason to delete page", false, true );
+               $this->addOption( 'i', "Interval to sleep between deletions" );
+               $this->addArg( 'listfile', 'File with titles to delete, separated by newlines', false );
        }
        
        public function execute() {
@@ -45,7 +59,7 @@ class DeleteBatch extends Maintenance {
 
                # Setup
                if( !$file ) {
-                       $this->error( "Unable to read file, exiting\n", true );
+                       $this->error( "Unable to read file, exiting", true );
                }
                $wgUser = User::newFromName( $user );
                $dbw = wfGetDB( DB_MASTER );