Commit 5e1b5581 authored by jocuri%softhome.net's avatar jocuri%softhome.net

Patch for bug 237778: update filter list in t/004template; r=kiko; a=justdave.

parent c909db1a
......@@ -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] ,
},
}
);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment