From: addshore Date: Thu, 24 Mar 2016 11:02:29 +0000 (+0000) Subject: Dont count RC_CATEGORIZE in Special:ActiveUsers X-Git-Tag: 1.31.0-rc.0~7487^2~1 X-Git-Url: http://git.cyclocoop.org///%22%40url%40//%22?a=commitdiff_plain;h=8f0c7432caff7b015c1cc378c9c2cd8c4de0fd03;p=lhc%2Fweb%2Fwiklou.git Dont count RC_CATEGORIZE in Special:ActiveUsers Bug: T130550 Change-Id: Ia2296586d35bb21085fcf386f26ad6f4e765e534 --- diff --git a/includes/specials/SpecialActiveusers.php b/includes/specials/SpecialActiveusers.php index 9c5fc2f973..9198c1ebaa 100644 --- a/includes/specials/SpecialActiveusers.php +++ b/includes/specials/SpecialActiveusers.php @@ -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 ), ];