X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FinitSiteStats.php;h=b2530ce653a0e78bb660373dbae79f82a3b7e52d;hb=e2789019688cc3f3871e0fbccbda3ca10316c624;hp=cac33ecc4904c4ed500d5cb66c0e124f94f48b0b;hpb=3e8c0191a3d2b3a94cd88ec4117381a5cddfb955;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/initSiteStats.php b/maintenance/initSiteStats.php index cac33ecc49..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,11 +63,14 @@ 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' ) ) { $this->output( "\nCounting and updating active users..." ); - $active = SiteStatsUpdate::cacheUpdate( wfGetDB( DB_MASTER ) ); + $active = SiteStatsUpdate::cacheUpdate( $this->getDB( DB_MASTER ) ); $this->output( "{$active}\n" ); }