diff options
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Config/Query.pm | 2 | ||||
-rw-r--r-- | Bugzilla/Search.pm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Config/Query.pm b/Bugzilla/Config/Query.pm index 808a9a102..6d570e01a 100644 --- a/Bugzilla/Config/Query.pm +++ b/Bugzilla/Config/Query.pm @@ -64,7 +64,7 @@ sub get_param_list { { name => 'defaultquery', type => 't', - default => 'bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailassigned_to1=1&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailqa_contact2=1&order=Importance&long_desc_type=substring' + default => 'bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailassigned_to1=1&emailassigned_to2=1&emailreporter2=1&emailcc2=1&emailqa_contact2=1&emaillongdesc3=1&order=Importance&long_desc_type=substring' }, { diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 271e23298..f036584ce 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -372,7 +372,7 @@ sub init { } } - foreach my $id ("1", "2") { + foreach my $id (1, 2, 3) { if (!defined ($params->param("email$id"))) { next; } |