diff options
author | justdave%syndicomm.com <> | 2002-04-16 13:25:20 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-04-16 13:25:20 +0200 |
commit | f44a3d6fe54e29220ee4a27a9d5980bf50f084a3 (patch) | |
tree | 249db74c5f76a86c9f6418df09b7282f7e411281 /template/default | |
parent | e60a89917b81eebf95002826d338cf1848e71429 (diff) | |
download | bugzilla-f44a3d6fe54e29220ee4a27a9d5980bf50f084a3.tar.gz bugzilla-f44a3d6fe54e29220ee4a27a9d5980bf50f084a3.tar.xz |
Fix for bug 137669: remove <nobr> tags from attachment status lists
Patch by Jeffrey Baker <jwbaker@acm.org>
r= justdave x2
Diffstat (limited to 'template/default')
-rwxr-xr-x | template/default/attachment/list.atml | 4 | ||||
-rwxr-xr-x | template/default/attachment/viewall.atml | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/template/default/attachment/list.atml b/template/default/attachment/list.atml index 794f92f59..5bc5217c9 100755 --- a/template/default/attachment/list.atml +++ b/template/default/attachment/list.atml @@ -50,15 +50,13 @@ <td valign="top">[% attachment.date %]</td> <td valign="top"> - <nobr> [% IF attachment.statuses.size == 0 %] <i>none</i> [% ELSE %] [% FOREACH s = attachment.statuses %] - [% s FILTER html %]<br> + [% s FILTER html FILTER replace('\s', ' ') %]<br> [% END %] [% END %] - </nobr> </td> <td valign="top"> diff --git a/template/default/attachment/viewall.atml b/template/default/attachment/viewall.atml index c3cca2ff3..88c92b969 100755 --- a/template/default/attachment/viewall.atml +++ b/template/default/attachment/viewall.atml @@ -63,15 +63,13 @@ <td valign="top">[% a.date %]</td> <td valign="top"> - <nobr> [% IF a.statuses.size == 0 %] <i>none</i> [% ELSE %] [% FOREACH s = a.statuses %] - [% s FILTER html %]<br> + [% s FILTER html FILTER replace('\s', ' ') %]<br> [% END %] [% END %] - </nobr> </td> <td valign="top"> |