diff options
author | kiko%async.com.br <> | 2003-07-22 02:42:53 +0000 |
---|---|---|
committer | kiko%async.com.br <> | 2003-07-22 02:42:53 +0000 |
commit | 388b25b0977d1f9e4d83856a14da6f85a519d3c6 (patch) | |
tree | 88f1ed8b7f26cf03bf10bf93fdf2d8e633092c55 /buglist.cgi | |
parent | Fix tinderbox bustage (diff) | |
download | bugzilla-388b25b0977d1f9e4d83856a14da6f85a519d3c6.tar.gz bugzilla-388b25b0977d1f9e4d83856a14da6f85a519d3c6.tar.bz2 bugzilla-388b25b0977d1f9e4d83856a14da6f85a519d3c6.zip |
Fix for bug 213079: When severity or priority are hidden, CSS class
names are incomplete in buglist. r=burnus, a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/buglist.cgi b/buglist.cgi index c0c13b033..5326507c7 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -485,8 +485,9 @@ if (!UserInGroup(Param("timetrackinggroup"))) { # Generate the list of columns that will be selected in the SQL query. -# The bug ID is always selected because bug IDs are always displayed -my @selectcolumns = ("bug_id"); +# The bug ID is always selected because bug IDs are always displayed. +# Severity and Priority are required for buglist CSS classes. +my @selectcolumns = ("bug_id", "bug_severity", "priority"); # remaining and actual_time are required for precentage_complete calculation: if (lsearch(\@displaycolumns, "percentage_complete") >= 0) { |