diff options
author | caillon%returnzero.com <> | 2003-07-27 10:16:40 +0200 |
---|---|---|
committer | caillon%returnzero.com <> | 2003-07-27 10:16:40 +0200 |
commit | e98093ef9f40cf2ab88a939e05de89400906352a (patch) | |
tree | afb8726d8e3691a6daa1531eda51b8bca2e8de76 /template/en/default | |
parent | 7fac05965d08f290fe19dd6f8e91616d11b56563 (diff) | |
download | bugzilla-e98093ef9f40cf2ab88a939e05de89400906352a.tar.gz bugzilla-e98093ef9f40cf2ab88a939e05de89400906352a.tar.xz |
Bug 153583 - Links to obsoleted attachment should use line-through style
r=kiko@async.com.br
a=justdave@netscape.com
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/attachment/list.html.tmpl | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/template/en/default/attachment/list.html.tmpl b/template/en/default/attachment/list.html.tmpl index 10112ae2f..fc5852923 100644 --- a/template/en/default/attachment/list.html.tmpl +++ b/template/en/default/attachment/list.html.tmpl @@ -35,11 +35,7 @@ [% IF !attachment.isprivate || canseeprivate %] <tr [% "class=\"bz_private\"" IF attachment.isprivate %]> <td valign="top"> - [% IF attachment.isobsolete %] - <strike><a href="attachment.cgi?id=[% attachment.attachid %]&action=view">[% attachment.description FILTER html %]</a></strike> - [% ELSE %] - <a href="attachment.cgi?id=[% attachment.attachid %]&action=view">[% attachment.description FILTER html %]</a> - [% END %] + <a href="attachment.cgi?id=[% attachment.attachid %]&action=view" [% "class=\"bz_obsolete\"" IF attachment.isobsolete %]>[% attachment.description FILTER html %]</a> </td> <td valign="top"> |