Fix for bug 137669: remove <nobr> tags from attachment status lists

Patch by Jeffrey Baker <jwbaker@acm.org> r= justdave x2
parent e60a8991
......@@ -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', '&nbsp;') %]<br>
[% END %]
[% END %]
</nobr>
</td>
<td valign="top">
......
......@@ -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', '&nbsp;') %]<br>
[% END %]
[% END %]
</nobr>
</td>
<td valign="top">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment