diff options
author | kiko%async.com.br <> | 2004-03-17 08:52:47 +0100 |
---|---|---|
committer | kiko%async.com.br <> | 2004-03-17 08:52:47 +0100 |
commit | 380b6e527cfb9cc98e6e40849915e2627fa2d0ae (patch) | |
tree | e104366c8bfcbfe674c37de32cce1fd2dc00f4c9 /template/en/default/reports | |
parent | 1bcd4b67a3ea4468ce3127ca1e9cce4a59690824 (diff) | |
download | bugzilla-380b6e527cfb9cc98e6e40849915e2627fa2d0ae.tar.gz bugzilla-380b6e527cfb9cc98e6e40849915e2627fa2d0ae.tar.xz |
Fix for bug 232397: .bz_obsolete shouldn't specify "underline". Define
specific bz_obsolete/closed/inactive classes (that don't specify
underline, but line-through instead) and additional Template filters for
conveniently applying them. Change occurences of <strike> to use new
classes and clean up callsites. Patch by byron jones
<bugzilla@glob.com.au>. r=myk, gerv. a=myk.
Diffstat (limited to 'template/en/default/reports')
-rw-r--r-- | template/en/default/reports/duplicates-table.html.tmpl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/template/en/default/reports/duplicates-table.html.tmpl b/template/en/default/reports/duplicates-table.html.tmpl index f8ea3a457..6017a1e4e 100644 --- a/template/en/default/reports/duplicates-table.html.tmpl +++ b/template/en/default/reports/duplicates-table.html.tmpl @@ -120,9 +120,8 @@ <tr [% "class='resolved'" IF bug.resolution != "" %]> <td> <center> - [% "<strike>" IF bug.resolution != "" %] - <a href="show_bug.cgi?id=[% bug.id %]">[% bug.id %]</a> - [% "</strike>" IF bug.resolution != "" %] + [% isclosed = bug.resolution != "" %] + <a href="show_bug.cgi?id=[% bug.id %]">[% bug.id FILTER closed(isclosed) %]</a> </center> </td> |