summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xwhine.pl12
1 files changed, 2 insertions, 10 deletions
diff --git a/whine.pl b/whine.pl
index f7ed6d5c7..d8cc39174 100755
--- a/whine.pl
+++ b/whine.pl
@@ -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.