From 380b6e527cfb9cc98e6e40849915e2627fa2d0ae Mon Sep 17 00:00:00 2001 From: "kiko%async.com.br" <> Date: Wed, 17 Mar 2004 07:52:47 +0000 Subject: 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 to use new classes and clean up callsites. Patch by byron jones . r=myk, gerv. a=myk. --- checksetup.pl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 00114ecc1..c14339f9a 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1178,7 +1178,9 @@ END # These don't actually need to do anything here, just exist FILTERS => { - strike => sub { return $_; } , + inactive => sub { return $_; } , + closed => sub { return $_; }, + obsolete => sub { return $_; }, js => sub { return $_; }, html_linebreak => sub { return $_; }, url_quote => sub { return $_; }, -- cgit v1.2.3-24-g4f1b