From: justdave%syndicomm.com <> Date: Tue, 16 Apr 2002 11:25:20 +0000 (+0000) Subject: Fix for bug 137669: remove tags from attachment status lists X-Git-Tag: bugzilla-2.16rc1~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f44a3d6fe54e29220ee4a27a9d5980bf50f084a3;p=thirdparty%2Fbugzilla.git Fix for bug 137669: remove tags from attachment status lists Patch by Jeffrey Baker r= justdave x2 --- diff --git a/template/default/attachment/list.atml b/template/default/attachment/list.atml index 794f92f595..5bc5217c9f 100755 --- a/template/default/attachment/list.atml +++ b/template/default/attachment/list.atml @@ -50,15 +50,13 @@ [% attachment.date %] - [% IF attachment.statuses.size == 0 %] none [% ELSE %] [% FOREACH s = attachment.statuses %] - [% s FILTER html %]
+ [% s FILTER html FILTER replace('\s', ' ') %]
[% END %] [% END %] -
diff --git a/template/default/attachment/viewall.atml b/template/default/attachment/viewall.atml index c3cca2ff3b..88c92b9699 100755 --- a/template/default/attachment/viewall.atml +++ b/template/default/attachment/viewall.atml @@ -63,15 +63,13 @@ [% a.date %] - [% IF a.statuses.size == 0 %] none [% ELSE %] [% FOREACH s = a.statuses %] - [% s FILTER html %]
+ [% s FILTER html FILTER replace('\s', ' ') %]
[% END %] [% END %] -