X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FinitSiteStats.php;h=8d26063c3a295d74a7a4ed0af35c23d73b07e917;hb=174f34a86de3162bc673fd3bc6bed815cccf0edc;hp=49e0e9d71e582bdbd42b7a5432315eccc526128b;hpb=23376a76c91b26353e5d2f546520002490c761d7;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/initSiteStats.php b/maintenance/initSiteStats.php index 49e0e9d71e..8d26063c3a 100644 --- a/maintenance/initSiteStats.php +++ b/maintenance/initSiteStats.php @@ -34,11 +34,7 @@ class InitSiteStats extends Maintenance { public function __construct() { parent::__construct(); $this->mDescription = "Re-initialise the site statistics tables"; - $this->addOption( - 'update', - 'Update the existing statistics (preserves the ss_total_views field)' - ); - $this->addOption( 'noviews', "Don't update the page view counter" ); + $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,12 +59,6 @@ class InitSiteStats extends Maintenance { $image = $counter->files(); $this->output( "{$image}\n" ); - if ( !$this->hasOption( 'noviews' ) ) { - $this->output( "Counting total page views..." ); - $views = $counter->views(); - $this->output( "{$views}\n" ); - } - if ( $this->hasOption( 'update' ) ) { $this->output( "\nUpdating site statistics..." ); $counter->refresh(); @@ -77,7 +67,7 @@ class InitSiteStats extends Maintenance { 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" ); }