From d33608228414d95cbe64d2925e50f1e67d7ad3a5 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 20 Nov 2010 11:14:11 +0000 Subject: [PATCH] Don't add newlines and tabs in the documentation, wordwrap() already does this --- maintenance/Maintenance.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maintenance/Maintenance.php b/maintenance/Maintenance.php index b43742fdb6..3181a52249 100644 --- a/maintenance/Maintenance.php +++ b/maintenance/Maintenance.php @@ -360,9 +360,9 @@ abstract class Maintenance { $this->addOption( 'wiki', 'For specifying the wiki ID', false, true ); $this->addOption( 'globals', 'Output globals at the end of processing for debugging' ); $this->addOption( 'memory-limit', 'Set a specific memory limit for the script, "max" for no limit or "default" to avoid changing it' ); - $this->addOption( 'server', "The protocol and server name to use in URLs, e.g.\n" . - "\t\thttp://en.wikipedia.org. This is sometimes necessary because\n" . - "\t\tserver name detection may fail in command line scripts.", false, true ); + $this->addOption( 'server', "The protocol and server name to use in URLs, e.g. " . + "http://en.wikipedia.org. This is sometimes necessary because " . + "server name detection may fail in command line scripts.", false, true ); // If we support a DB, show the options if ( $this->getDbType() > 0 ) { $this->addOption( 'dbuser', 'The DB user to use for this script', false, true ); -- 2.20.1