diff options
author | gerv%gerv.net <> | 2001-10-12 06:42:07 +0200 |
---|---|---|
committer | gerv%gerv.net <> | 2001-10-12 06:42:07 +0200 |
commit | 69a478ec3fbd8dcab546c57bacf150ed739b7dab (patch) | |
tree | 68f5bdcebb42264c582d9122a2d4337be3cc0e93 /buglist.cgi | |
parent | fb4981afba21ff354de0de17bacf3844348f14a0 (diff) | |
download | bugzilla-69a478ec3fbd8dcab546c57bacf150ed739b7dab.tar.gz bugzilla-69a478ec3fbd8dcab546c57bacf150ed739b7dab.tar.xz |
Bug 104247 - make colours in buglists work again. Patch by kiko, r=gerv.
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/buglist.cgi b/buglist.cgi index 144972d37..42ddee9b8 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'"; } } |