diff options
author | jocuri%softhome.net <> | 2004-10-20 05:02:43 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-10-20 05:02:43 +0200 |
commit | c9df7549e4823924bf9c79668c4e9fd5bdd6b1d4 (patch) | |
tree | 08f512c6625a3afd0d8854dedb58ea31f18917c2 /template/en/default/search | |
parent | 43b5d465b7c88fd62447416bddcc501da5a8ef97 (diff) | |
download | bugzilla-c9df7549e4823924bf9c79668c4e9fd5bdd6b1d4.tar.gz bugzilla-c9df7549e4823924bf9c79668c4e9fd5bdd6b1d4.tar.xz |
Patch for bug 199811: Implement UI for 'contains none of the strings' search operator; patch by Marc Schumann <wurblzap@gmail.com>, r=kiko, a=justdave.
Diffstat (limited to 'template/en/default/search')
-rw-r--r-- | template/en/default/search/boolean-charts.html.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/template/en/default/search/boolean-charts.html.tmpl b/template/en/default/search/boolean-charts.html.tmpl index 6887321f4..8caeac6e8 100644 --- a/template/en/default/search/boolean-charts.html.tmpl +++ b/template/en/default/search/boolean-charts.html.tmpl @@ -27,8 +27,9 @@ { name => "substring", description => "contains the string" }, { name => "casesubstring", description => "contains the string (exact case)" }, { name => "notsubstring", description => "does not contain the string" }, - { name => "allwordssubstr", description => "contains all of the strings" }, { name => "anywordssubstr", description => "contains any of the strings" }, + { name => "allwordssubstr", description => "contains all of the strings" }, + { name => "nowordssubstr", description => "contains none of the strings" }, { name => "regexp", description => "contains regexp" }, { name => "notregexp", description => "does not contain regexp" }, { name => "lessthan", description => "is less than" }, |