From 4857a4c58ed7793594275f25e7f7c499d96ece7e Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" Date: Tue, 24 Feb 2004 00:42:46 +0000 Subject: [PATCH] Patch for bug 234264; eliminates a double escaping issue by removing filtering of searchname in title; patch by Jeff Walden ; r=gerv; a=justdave. --- webtools/bugzilla/template/en/default/list/list.html.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/template/en/default/list/list.html.tmpl b/webtools/bugzilla/template/en/default/list/list.html.tmpl index f0e03cd4226..82cf5dbfdb8 100644 --- a/webtools/bugzilla/template/en/default/list/list.html.tmpl +++ b/webtools/bugzilla/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" ] %]