Do not include RC_EXTERNAL in number active users on Special:Statistics
We already exclude external (mostly Wikidata) actions from counting on
Special:ActiveUsers as of 56524c05. Should be consistent.
Change-Id: Ib69a614a65246a0f4f47365751f9bef130f47475
This commit is contained in:
parent
756f1f6aa2
commit
73e7b9cfcc
1 changed files with 1 additions and 0 deletions
|
|
@ -149,6 +149,7 @@ class SiteStatsUpdate implements DeferrableUpdate, MergeableUpdate {
|
|||
'recentchanges',
|
||||
'COUNT( DISTINCT rc_user_text )',
|
||||
[
|
||||
'rc_type != ' . $dbr->addQuotes( RC_EXTERNAL ), // Exclude external (Wikidata)
|
||||
'rc_user != 0',
|
||||
'rc_bot' => 0,
|
||||
'rc_log_type != ' . $dbr->addQuotes( 'newusers' ) . ' OR rc_log_type IS NULL',
|
||||
|
|
|
|||
Loading…
Reference in a new issue