diff options
author | burnus%gmx.de <> | 2003-08-22 20:55:13 +0000 |
---|---|---|
committer | burnus%gmx.de <> | 2003-08-22 20:55:13 +0000 |
commit | 115cc7b700979787e2adbb105832f27de4c89f28 (patch) | |
tree | cf1e927145dec0439e651b92d32c4a7afeafec98 /t | |
parent | d08d7d95cfb5813b08f4c0bbc50cc435f6cf275c (diff) | |
download | bugs-115cc7b700979787e2adbb105832f27de4c89f28.tar bugs-115cc7b700979787e2adbb105832f27de4c89f28.tar.gz bugs-115cc7b700979787e2adbb105832f27de4c89f28.tar.bz2 bugs-115cc7b700979787e2adbb105832f27de4c89f28.tar.xz bugs-115cc7b700979787e2adbb105832f27de4c89f28.zip |
Bug 139011 - Improve buglist colors further
r,a=justdave
Diffstat (limited to 't')
-rw-r--r-- | t/004template.t | 1 | ||||
-rw-r--r-- | t/008filter.t | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/t/004template.t b/t/004template.t index 35965aa11..725241426 100644 --- a/t/004template.t +++ b/t/004template.t @@ -92,6 +92,7 @@ foreach my $include_path (@include_paths) { js => sub { return $_ } , strike => sub { return $_ } , url_quote => sub { return $_ } , + css_class_quote => sub { return $_ } , xml => sub { return $_ } , quoteUrls => sub { return $_ } , bug_link => [ sub { return sub { return $_; } }, 1] , diff --git a/t/008filter.t b/t/008filter.t index 0d6ec4b49..3bf7f3fd1 100644 --- a/t/008filter.t +++ b/t/008filter.t @@ -198,8 +198,8 @@ sub directive_ok { # Things which are already filtered # Note: If a single directive prints two things, and only one is # filtered, we may not catch that case. - return 1 if $directive =~ /FILTER\ (html|csv|js|url_quote|quoteUrls| - time|uri|xml|lower)/x; + return 1 if $directive =~ /FILTER\ (html|csv|js|url_quote|css_class_quote| + quoteUrls|time|uri|xml|lower)/x; return 0; } |