summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search.pm
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2012-01-23 05:49:32 +0100
committerByron Jones <bjones@mozilla.com>2012-01-23 05:49:32 +0100
commit722c6fd54c889e0e0e953550467ed6b942f33dda (patch)
tree00a70601fa9678482b6651673686e6cd25e6f3e6 /Bugzilla/Search.pm
parente16982d71efca56d684af5b8828134c6b3c63c24 (diff)
downloadbugzilla-722c6fd54c889e0e0e953550467ed6b942f33dda.tar.gz
bugzilla-722c6fd54c889e0e0e953550467ed6b942f33dda.tar.xz
Bug 719363: add instant search
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r--Bugzilla/Search.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index 0c9f84689..0c5b65acf 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -2797,8 +2797,8 @@ sub _changedby {
sub IsValidQueryType
{
my ($queryType) = @_;
- # BMO: Added google query type
- if (grep { $_ eq $queryType } qw(specific advanced google)) {
+ # BMO: Added google and instant
+ if (grep { $_ eq $queryType } qw(specific advanced google instant)) {
return 1;
}
return 0;