diff options
author | Matt Selsky <selsky@columbia.edu> | 2011-10-15 14:56:07 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-10-15 14:56:07 +0200 |
commit | 1c7c7bbb3c2a32f2962ca2df52297f1abd7bd046 (patch) | |
tree | 9e1083d7e766f973d02b011545af3de3a8f99df2 | |
parent | ac67c44a5c634f7b7427c2822d538e242c2a404f (diff) | |
download | bugzilla-1c7c7bbb3c2a32f2962ca2df52297f1abd7bd046.tar.gz bugzilla-1c7c7bbb3c2a32f2962ca2df52297f1abd7bd046.tar.xz |
Bug 673012: Add "does not contain" to people search
r=gerv a=mkanat
-rw-r--r-- | template/en/default/search/form.html.tmpl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index fb9454ff6..b1134de60 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -257,6 +257,7 @@ TUI_hide_default('information_query'); <select name="emailtype[% n %]"> [% FOREACH qv = [ { name => "substring", description => "contains" }, + { name => "notsubstring", description => "doesn't contain" }, { name => "exact", description => "is" }, { name => "notequals", description => "is not" }, { name => "regexp", description => "matches regexp" }, |