Fix help wordwrap in namespaceDupes.php
authorAntoine Musso <hashar@users.mediawiki.org>
Tue, 1 Mar 2011 20:44:15 +0000 (20:44 +0000)
committerAntoine Musso <hashar@users.mediawiki.org>
Tue, 1 Mar 2011 20:44:15 +0000 (20:44 +0000)
help wordwrap is handled by the Maintenance class automatically.
Tabulations and new line are not needed anymore.

maintenance/namespaceDupes.php

index dbb16bc..d77d431 100644 (file)
@@ -30,10 +30,10 @@ class NamespaceConflictChecker extends Maintenance {
                parent::__construct();
                $this->mDescription = "";
                $this->addOption( 'fix', 'Attempt to automatically fix errors' );
-               $this->addOption( 'suffix', "Dupes will be renamed with correct namespace with\n" .
-                                                                       "\t\t<text> Appended after the article name", false, true );
-               $this->addOption( 'prefix', "Do an explicit check for the given title prefix\n" .
-                                                                       "\t\tappended after the article name", false, true );
+               $this->addOption( 'suffix', "Dupes will be renamed with correct namespace with " .
+                                                                       "<text> appended after the article name", false, true );
+               $this->addOption( 'prefix', "Do an explicit check for the given title prefix " .
+                                                                       "appended after the article name", false, true );
        }
 
        public function execute() {