Commit 388b25b0 authored by kiko%async.com.br's avatar kiko%async.com.br

Fix for bug 213079: When severity or priority are hidden, CSS class

names are incomplete in buglist. r=burnus, a=justdave
parent 2a3debe0
...@@ -485,8 +485,9 @@ if (!UserInGroup(Param("timetrackinggroup"))) { ...@@ -485,8 +485,9 @@ if (!UserInGroup(Param("timetrackinggroup"))) {
# Generate the list of columns that will be selected in the SQL query. # 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 # The bug ID is always selected because bug IDs are always displayed.
my @selectcolumns = ("bug_id"); # 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: # remaining and actual_time are required for precentage_complete calculation:
if (lsearch(\@displaycolumns, "percentage_complete") >= 0) { if (lsearch(\@displaycolumns, "percentage_complete") >= 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment