diff options
author | travis%sedsystems.ca <> | 2005-01-19 03:29:25 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-01-19 03:29:25 +0100 |
commit | 61a49f228204e2991aea7970c44efdd433f8c71b (patch) | |
tree | 02f413c6b6600b62231883fa4b5baf121c5d96ac /template/en/default/admin | |
parent | 00aa5409017d6e0f6607e09502c8d0d470077473 (diff) | |
download | bugzilla-61a49f228204e2991aea7970c44efdd433f8c71b.tar.gz bugzilla-61a49f228204e2991aea7970c44efdd433f8c71b.tar.xz |
Bug 245282 : Flags should use nonbreaking hyphens or nowrap or somehow prevent hyphens from breaking flag names
Patch by LpSolit@gmail.com r=wurblzap a=myk
Diffstat (limited to 'template/en/default/admin')
-rw-r--r-- | template/en/default/admin/flag-type/list.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/admin/flag-type/list.html.tmpl b/template/en/default/admin/flag-type/list.html.tmpl index 44cbf36c2..9638df891 100644 --- a/template/en/default/admin/flag-type/list.html.tmpl +++ b/template/en/default/admin/flag-type/list.html.tmpl @@ -93,7 +93,7 @@ [% FOREACH type = types %] <tr class="[% IF type.is_active %]active[% ELSE %]inactive[% END %]"> - <td><a href="editflagtypes.cgi?action=edit&id=[% type.id %]">[% type.name FILTER html %]</a></td> + <td><a href="editflagtypes.cgi?action=edit&id=[% type.id %]">[% type.name FILTER html FILTER no_break %]</a></td> <td>[% type.description FILTER html %]</td> <td> <a href="editflagtypes.cgi?action=copy&id=[% type.id %]">Copy</a> |