Don't send RC_CATEGORIZE events to the IRC feed
authorKunal Mehta <legoktm@member.fsf.org>
Thu, 18 Feb 2016 20:02:31 +0000 (12:02 -0800)
committerKunal Mehta <legoktm@member.fsf.org>
Thu, 18 Feb 2016 20:19:08 +0000 (12:19 -0800)
Bug: T127360
Change-Id: I21e4c0edf25fc0b7f16ef3029de879d3b7a2923d

includes/rcfeed/IRCColourfulRCFeedFormatter.php

index c800c36..ddea695 100644 (file)
@@ -33,6 +33,11 @@ class IRCColourfulRCFeedFormatter implements RCFeedFormatter {
                global $wgUseRCPatrol, $wgUseNPPatrol, $wgLocalInterwikis,
                        $wgCanonicalServer, $wgScript;
                $attribs = $rc->getAttributes();
+               if ( $attribs['rc_type'] == RC_CATEGORIZE ) {
+                       // Don't send RC_CATEGORIZE events to IRC feed (T127360)
+                       return null;
+               }
+
                if ( $attribs['rc_type'] == RC_LOG ) {
                        // Don't use SpecialPage::getTitleFor, backwards compatibility with
                        // IRC API which expects "Log".