From 1a0215fd5ce831c3c2ffe1bbc2b9a916872430c9 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" Date: Sat, 27 Mar 2004 20:16:00 +0000 Subject: [PATCH] Patch for bug 237778: update filter list in t/004template; r=kiko; a=justdave. git-svn-id: svn://10.0.0.236/trunk@154339 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/t/004template.t | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mozilla/webtools/bugzilla/t/004template.t b/mozilla/webtools/bugzilla/t/004template.t index 660ee5c6545..86b505c285e 100644 --- a/mozilla/webtools/bugzilla/t/004template.t +++ b/mozilla/webtools/bugzilla/t/004template.t @@ -94,9 +94,9 @@ foreach my $include_path (@include_paths) { { html_linebreak => sub { return $_; }, js => sub { return $_ } , - inactive => sub { return $_; } , - closed => sub { return $_; }, - obsolete => sub { return $_; }, + inactive => [ sub { return sub { return $_; } }, 1] , + closed => [ sub { return sub { return $_; } }, 1] , + obsolete => [ sub { return sub { return $_; } }, 1] , url_quote => sub { return $_ } , css_class_quote => sub { return $_ } , xml => sub { return $_ } , @@ -106,6 +106,7 @@ foreach my $include_path (@include_paths) { unitconvert => sub { return $_ }, time => sub { return $_ } , none => sub { return $_ } , + ics => [ sub { return sub { return $_; } }, 1] , }, } );