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 @@ ...@@ -50,15 +50,13 @@
<td valign="top">[% attachment.date %]</td> <td valign="top">[% attachment.date %]</td>
<td valign="top"> <td valign="top">
<nobr>
[% IF attachment.statuses.size == 0 %] [% IF attachment.statuses.size == 0 %]
<i>none</i> <i>none</i>
[% ELSE %] [% ELSE %]
[% FOREACH s = attachment.statuses %] [% FOREACH s = attachment.statuses %]
[% s FILTER html %]<br> [% s FILTER html FILTER replace('\s', '&nbsp;') %]<br>
[% END %] [% END %]
[% END %] [% END %]
</nobr>
</td> </td>
<td valign="top"> <td valign="top">
......
...@@ -63,15 +63,13 @@ ...@@ -63,15 +63,13 @@
<td valign="top">[% a.date %]</td> <td valign="top">[% a.date %]</td>
<td valign="top"> <td valign="top">
<nobr>
[% IF a.statuses.size == 0 %] [% IF a.statuses.size == 0 %]
<i>none</i> <i>none</i>
[% ELSE %] [% ELSE %]
[% FOREACH s = a.statuses %] [% FOREACH s = a.statuses %]
[% s FILTER html %]<br> [% s FILTER html FILTER replace('\s', '&nbsp;') %]<br>
[% END %] [% END %]
[% END %] [% END %]
</nobr>
</td> </td>
<td valign="top"> <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