X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FimportSites.php;h=8845c60640c2706575fc03bb7eea0fee54f6ffaa;hb=3c18e32e58d53ab38d1dd52d00f248ddef435ebd;hp=7cd2000820e35b3953ed6f2be8bcd5d9e23f00b7;hpb=799ca9856b52fb52b2d7d2356df109352eddd707;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/importSites.php b/maintenance/importSites.php index 7cd2000820..8845c60640 100644 --- a/maintenance/importSites.php +++ b/maintenance/importSites.php @@ -15,7 +15,7 @@ require_once $basePath . '/maintenance/Maintenance.php'; class ImportSites extends Maintenance { public function __construct() { - $this->mDescription = 'Imports site definitions from XML into the sites table.'; + $this->addDescription( 'Imports site definitions from XML into the sites table.' ); $this->addArg( 'file', 'An XML file containing site definitions (see docs/sitelist.txt). ' . 'Use "php://stdin" to read from stdin.', true @@ -24,7 +24,6 @@ class ImportSites extends Maintenance { parent::__construct(); } - /** * Do the import. */