diff options
author | jouni%heikniemi.net <> | 2002-07-12 04:29:27 +0200 |
---|---|---|
committer | jouni%heikniemi.net <> | 2002-07-12 04:29:27 +0200 |
commit | 378c0bc7e095c80102da2a36685eadb6013ebfc0 (patch) | |
tree | a9ae084956d32e3e658990f019d8653e5e36f8eb | |
parent | be3da831083bd6349a5fd184f5194c5e9cce57bb (diff) | |
download | bugzilla-378c0bc7e095c80102da2a36685eadb6013ebfc0.tar.gz bugzilla-378c0bc7e095c80102da2a36685eadb6013ebfc0.tar.xz |
Bug 156426: Query interface had ยด:s instead of ':s in "doesn't".
2xr=timeless
-rw-r--r-- | template/en/default/search/form.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/search/form.html.tmpl b/template/en/default/search/form.html.tmpl index 057ef12ef..7bab96cb6 100644 --- a/template/en/default/search/form.html.tmpl +++ b/template/en/default/search/form.html.tmpl @@ -325,7 +325,7 @@ function selectProduct(f) { { value => "allwords", description => "contains all of the words" }, { value => "anywords", description => "contains any of the words" }, { value => "regexp", description => "matches the regexp" }, - { value => "notregexp", description => "doesn’t match the regexp" } ] %] + { value => "notregexp", description => "doesn't match the regexp" } ] %] [%# *** Summary *** %] @@ -557,7 +557,7 @@ function selectProduct(f) { { name => "substring", description => "contains" }, { name => "exact", description => "is" }, { name => "regexp", description => "matches regexp" }, - { name => "notregexp", description => "doesn’t match regexp" } ] %] + { name => "notregexp", description => "doesn't match regexp" } ] %] <option value="[% qv.name %]" [% " selected" IF default.emailtype.$n == qv.name %]>[% qv.description %]</option> |