X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FinitSiteStats.php;h=b2530ce653a0e78bb660373dbae79f82a3b7e52d;hb=17c686a802016269c69789d92ddedb7c35f5c1a7;hp=8d26063c3a295d74a7a4ed0af35c23d73b07e917;hpb=e2d6e193c94cb0b9b82654d2365113973dd41ecb;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/initSiteStats.php b/maintenance/initSiteStats.php index 8d26063c3a..b2530ce653 100644 --- a/maintenance/initSiteStats.php +++ b/maintenance/initSiteStats.php @@ -33,7 +33,7 @@ require_once __DIR__ . '/Maintenance.php'; class InitSiteStats extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Re-initialise the site statistics tables"; + $this->addDescription( 'Re-initialise the site statistics tables' ); $this->addOption( 'update', 'Update the existing statistics' ); $this->addOption( 'active', 'Also update active users count' ); $this->addOption( 'use-master', 'Count using the master database' ); @@ -63,6 +63,9 @@ class InitSiteStats extends Maintenance { $this->output( "\nUpdating site statistics..." ); $counter->refresh(); $this->output( "done.\n" ); + } else { + $this->output( "\nTo update the site statistics table, run the script " + . "with the --update option.\n" ); } if ( $this->hasOption( 'active' ) ) {