diff options
author | jocuri%softhome.net <> | 2004-02-24 09:42:46 +0100 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-02-24 09:42:46 +0100 |
commit | 6d94220d7b98356740d7d7e3a64c437bc7a83993 (patch) | |
tree | 731c0de78f7cfdfedc9e72a5cebaf964a3de894e | |
parent | 1ddabefad38f1fe6fc0343869a46bb7c8fa137d8 (diff) | |
download | bugzilla-6d94220d7b98356740d7d7e3a64c437bc7a83993.tar.gz bugzilla-6d94220d7b98356740d7d7e3a64c437bc7a83993.tar.xz |
Patch for bug 234264; eliminates a double escaping issue by removing filtering of searchname in title; patch by Jeff Walden <Jswalden86@netzero.net>; r=gerv; a=justdave.
-rw-r--r-- | template/en/default/list/list.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/list/list.html.tmpl b/template/en/default/list/list.html.tmpl index f0e03cd42..82cf5dbfd 100644 --- a/template/en/default/list/list.html.tmpl +++ b/template/en/default/list/list.html.tmpl @@ -32,7 +32,7 @@ [% title = "$terms.Bug List" %] [% IF searchname %] - [% title = title _ ": " _ searchname FILTER html %] + [% title = title _ ": " _ searchname %] [% END %] [% style_urls = [ "css/buglist.css" ] %] |