Bug 801284: whine.pl should use DEFAULT_COLUMN_LIST as the default column list instead of its hardcoded list

r=LpSolit a=sgreen
trunk
Edmund Wong 2013-09-05 13:22:44 +02:00 committed by Frédéric Buclin
parent b99ef1f46f
commit 243701885d
1 changed files with 2 additions and 10 deletions

View File

@ -422,16 +422,8 @@ sub run_queries {
next unless $savedquery; # silently ignore missing queries
# Execute the saved query
my @searchfields = qw(
bug_id
bug_severity
priority
rep_platform
assigned_to
bug_status
resolution
short_desc
);
my @searchfields = ('bug_id', DEFAULT_COLUMN_LIST);
# A new Bugzilla::CGI object needs to be created to allow
# Bugzilla::Search to execute a saved query. It's exceedingly weird,
# but that's how it works.