From: Marius Hoch Date: Wed, 20 May 2015 19:21:11 +0000 (+0200) Subject: Improve documentation of maintenance/sql.php X-Git-Tag: 1.31.0-rc.0~11349 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=a89338ff82cd06e7df45e31f0c22d6f7ced175bd;p=lhc%2Fweb%2Fwiklou.git Improve documentation of maintenance/sql.php I found this to be lacking earlier this week... Change-Id: I409c7451baa71b88cf554af0d82d1bf5904a2c4c --- diff --git a/maintenance/sql.php b/maintenance/sql.php index 886e3f108d..82eae21642 100644 --- a/maintenance/sql.php +++ b/maintenance/sql.php @@ -32,7 +32,8 @@ require_once __DIR__ . '/Maintenance.php'; class MwSql extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Send SQL queries to a MediaWiki database"; + $this->mDescription = "Send SQL queries to a MediaWiki database. " . + "Takes a file name containing SQL as argument or runs interactively."; $this->addOption( 'cluster', 'Use an external cluster by name', false, true ); $this->addOption( 'wikidb', 'The database wiki ID to use if not the current one', false, true ); $this->addOption( 'slave', 'Use a slave server (either "any" or by name)', false, true );