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

r=LpSolit a=sgreen


git-svn-id: svn://10.0.0.236/trunk@265000 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bzrmirror%bugzilla.org
2013-09-05 11:46:50 +00:00
parent e48fdd253c
commit ecf9e2f59d
2 changed files with 3 additions and 11 deletions

View File

@@ -1 +1 @@
8730
8731

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.