diff options
author | terry%mozilla.org <> | 1999-05-11 07:23:12 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-05-11 07:23:12 +0200 |
commit | 27332c4ce5c733314300fc423519380de9b96ce0 (patch) | |
tree | 12ce558c2b72f2a2453552f58603e4da53396341 | |
parent | 2adbacb8d2604dc7888216537c248b30cde1128e (diff) | |
download | bugzilla-27332c4ce5c733314300fc423519380de9b96ce0.tar.gz bugzilla-27332c4ce5c733314300fc423519380de9b96ce0.tar.xz |
Allow querying by groupset (though there is no UI for it yet; can only
use this by manually hacking the URL string.)
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index 4727afca6..53026b7d6 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -236,7 +236,7 @@ if (defined $::FORM{'sql'}) { my @legal_fields = ("bug_id", "product", "version", "rep_platform", "op_sys", "bug_status", "resolution", "priority", "bug_severity", "assigned_to", "reporter", "component", - "target_milestone"); + "target_milestone", "groupset"); foreach my $field (keys %::FORM) { my $or = ""; |