From: gerv%gerv.net <> Date: Fri, 12 Oct 2001 04:42:07 +0000 (+0000) Subject: Bug 104247 - make colours in buglists work again. Patch by kiko, r=gerv. X-Git-Tag: bugzilla-2.14.1~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=69a478ec3fbd8dcab546c57bacf150ed739b7dab;p=thirdparty%2Fbugzilla.git Bug 104247 - make colours in buglists work again. Patch by kiko, r=gerv. --- diff --git a/buglist.cgi b/buglist.cgi index 144972d379..42ddee9b86 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -1228,13 +1228,13 @@ while (@row = FetchSQLData()) { } my $customstyle = ""; if ($severity) { - if ($severity eq "enhan") { + if ($severity eq "enh") { $customstyle = "style='font-style:italic ! important'"; } - if ($severity eq "block") { + if ($severity eq "blo") { $customstyle = "style='color:red ! important; font-weight:bold ! important'"; } - if ($severity eq "criti") { + if ($severity eq "cri") { $customstyle = "style='color:red; ! important'"; } }