From 84cb1ed9714d6ffba89bcd7658a10ab9bf34b74f Mon Sep 17 00:00:00 2001 From: Danny B Date: Sat, 24 May 2008 01:04:32 +0000 Subject: [PATCH] * Bug 14245 - Bot flag not shown on RC IRC posts * switching the M & N flags order --- includes/RecentChange.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.20.1