diff options
author | jocuri%softhome.net <> | 2004-03-28 06:16:00 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-03-28 06:16:00 +0200 |
commit | 5e1b5581cd825b630c899ad75908cbf90b5481a9 (patch) | |
tree | a55f0ec336cf4cca7114764b49a8ab27dcfb58b2 /t | |
parent | c909db1acf16d9742fd276edb06a3d7dd55d6abd (diff) | |
download | bugzilla-5e1b5581cd825b630c899ad75908cbf90b5481a9.tar.gz bugzilla-5e1b5581cd825b630c899ad75908cbf90b5481a9.tar.xz |
Patch for bug 237778: update filter list in t/004template; r=kiko; a=justdave.
Diffstat (limited to 't')
-rw-r--r-- | t/004template.t | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/t/004template.t b/t/004template.t index 660ee5c65..86b505c28 100644 --- a/t/004template.t +++ b/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] , }, } ); |