Dont count RC_CATEGORIZE in Special:ActiveUsers
authoraddshore <addshorewiki@gmail.com>
Thu, 24 Mar 2016 11:02:29 +0000 (11:02 +0000)
committeraddshore <addshorewiki@gmail.com>
Thu, 24 Mar 2016 11:02:29 +0000 (11:02 +0000)
Bug: T130550
Change-Id: Ia2296586d35bb21085fcf386f26ad6f4e765e534

includes/specials/SpecialActiveusers.php

index 9c5fc2f..9198c1e 100644 (file)
@@ -103,6 +103,7 @@ class ActiveUsersPager extends UsersPager {
                        'user_name = qcc_title',
                        'rc_user_text = qcc_title',
                        'rc_type != ' . $dbr->addQuotes( RC_EXTERNAL ), // Don't count wikidata.
+                       'rc_type != ' . $dbr->addQuotes( RC_CATEGORIZE ), // Don't count categorization changes.
                        'rc_log_type IS NULL OR rc_log_type != ' . $dbr->addQuotes( 'newusers' ),
                        'rc_timestamp >= ' . $dbr->addQuotes( $timestamp ),
                ];