From: Danny B Date: Sat, 24 May 2008 01:04:32 +0000 (+0000) Subject: * Bug 14245 - Bot flag not shown on RC IRC posts X-Git-Tag: 1.31.0-rc.0~47415 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=84cb1ed9714d6ffba89bcd7658a10ab9bf34b74f;p=lhc%2Fweb%2Fwiklou.git * Bug 14245 - Bot flag not shown on RC IRC posts * switching the M & N flags order --- diff --git a/includes/RecentChange.php b/includes/RecentChange.php index 4b13b12aad..f2e49d43e9 100644 --- a/includes/RecentChange.php +++ b/includes/RecentChange.php @@ -606,7 +606,7 @@ class RecentChange $flag = $rc_log_action; } else { $comment = $this->cleanupForIRC( $rc_comment ); - $flag = ($rc_minor ? "M" : "") . ($rc_new ? "N" : ""); + $flag = ($rc_new ? "N" : "") . ($rc_minor ? "M" : "") . ($rc_bot ? "B" : ""); } # see http://www.irssi.org/documentation/formats for some colour codes. prefix is \003, # no colour (\003) switches back to the term default