зеркало из https://github.com/mozilla/gecko-dev.git
Fix for bug 213079: When severity or priority are hidden, CSS class
names are incomplete in buglist. r=burnus, a=justdave
This commit is contained in:
Родитель
58431f5d65
Коммит
4d4d8d5162
|
@ -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) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче