diff options
author | jenkins-bot <jenkins-bot@gerrit.wikimedia.org> | 2024-09-16 22:56:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@wikimedia.org> | 2024-09-16 22:56:25 +0000 |
commit | 5253dd5bf33ee5e46cbb2f4d7b7d9c39c28f4609 (patch) | |
tree | f5f72130969ffb60264672306fe5c8c35c52be86 /maintenance | |
parent | 53cf25d935fe41a40f575f31314a7e37a4d019e8 (diff) | |
parent | d814e25a816d2d7e1e5f96e89b053dc42c8ebdf5 (diff) | |
download | mediawikicore-5253dd5bf33ee5e46cbb2f4d7b7d9c39c28f4609.tar.gz mediawikicore-5253dd5bf33ee5e46cbb2f4d7b7d9c39c28f4609.zip |
Merge "Test exportSites.php and importSites.php"
Diffstat (limited to 'maintenance')
-rw-r--r-- | maintenance/exportSites.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/maintenance/exportSites.php b/maintenance/exportSites.php index 5a41cfa19b7b..356e1979b190 100644 --- a/maintenance/exportSites.php +++ b/maintenance/exportSites.php @@ -7,7 +7,7 @@ require_once __DIR__ . '/Maintenance.php'; use MediaWiki\Site\SiteExporter; /** - * Maintenance script for exporting site definitions from XML into the sites table. + * Maintenance script for exporting site definitions from the sites table to XML. * * @since 1.25 * @@ -19,7 +19,7 @@ class ExportSites extends Maintenance { public function __construct() { parent::__construct(); - $this->addDescription( 'Exports site definitions the sites table to XML file' ); + $this->addDescription( 'Exports site definitions from the sites table to XML file' ); $this->addArg( 'file', 'A file to write the XML to (see docs/sitelist.md). ' . 'Use "php://stdout" to write to stdout.', true |