From: Antoine Musso Date: Tue, 1 Mar 2011 20:44:15 +0000 (+0000) Subject: Fix help wordwrap in namespaceDupes.php X-Git-Tag: 1.31.0-rc.0~31699 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/comptes/?a=commitdiff_plain;h=e778fea5e5b15cd2b5cb8fccc07888884882c30d;p=lhc%2Fweb%2Fwiklou.git Fix help wordwrap in namespaceDupes.php help wordwrap is handled by the Maintenance class automatically. Tabulations and new line are not needed anymore. --- diff --git a/maintenance/namespaceDupes.php b/maintenance/namespaceDupes.php index dbb16bcd5c..d77d431487 100644 --- a/maintenance/namespaceDupes.php +++ b/maintenance/namespaceDupes.php @@ -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 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 " . + " 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() {