From: Aaron Schulz Date: Fri, 9 Jan 2009 17:47:05 +0000 (+0000) Subject: Mark non-patrolled edits in feeds (bug 16604) X-Git-Tag: 1.31.0-rc.0~43481 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=690e741c9deb33d932aa4455f4d5a297caa1453a;p=lhc%2Fweb%2Fwiklou.git Mark non-patrolled edits in feeds (bug 16604) --- diff --git a/includes/RecentChange.php b/includes/RecentChange.php index f03fbcbb0b..b5345d08d1 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -643,7 +643,7 @@ class RecentChange $flag = $rc_log_action; } else { $comment = self::cleanupForIRC( $rc_comment ); - $flag = ($rc_new ? "N" : "") . ($rc_minor ? "M" : "") . ($rc_bot ? "B" : ""); + $flag = ($rc_patrolled ? "" : "!") . ($rc_new ? "N" : "") . ($rc_minor ? "M" : "") . ($rc_bot ? "B" : ""); } if ( $wgRC2UDPInterwikiPrefix === true ) {