From 8f0c7432caff7b015c1cc378c9c2cd8c4de0fd03 Mon Sep 17 00:00:00 2001 From: addshore Date: Thu, 24 Mar 2016 11:02:29 +0000 Subject: [PATCH] Dont count RC_CATEGORIZE in Special:ActiveUsers Bug: T130550 Change-Id: Ia2296586d35bb21085fcf386f26ad6f4e765e534 --- includes/specials/SpecialActiveusers.php | 1 + 1 file changed, 1 insertion(+) 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 ), ]; -- 2.20.1