diff options
author | David Lawrence <dkl@mozilla.com> | 2014-11-04 21:46:41 +0000 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2014-11-04 21:46:41 +0000 |
commit | f5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f (patch) | |
tree | b95c7e398739df2b8447d93a32a1b10f2c9fc2e7 /t | |
parent | 'cgi' is not defined in templates, see bug 913364 (diff) | |
download | bugzilla-f5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f.tar.gz bugzilla-f5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f.tar.bz2 bugzilla-f5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f.zip |
Revert Bug 330707 - Add optional support for MarkDown
Diffstat (limited to 't')
-rw-r--r-- | t/004template.t | 1 | ||||
-rw-r--r-- | t/008filter.t | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/t/004template.t b/t/004template.t index b0ca5a629..d38f9e16b 100644 --- a/t/004template.t +++ b/t/004template.t @@ -88,7 +88,6 @@ foreach my $include_path (@include_paths) { wrap_comment => sub { return $_ }, none => sub { return $_ } , ics => [ sub { return sub { return $_; } }, 1] , - markdown => sub { return $_ } , }, } ); diff --git a/t/008filter.t b/t/008filter.t index 204bbdc43..f0a26d13f 100644 --- a/t/008filter.t +++ b/t/008filter.t @@ -212,7 +212,7 @@ sub directive_ok { return 1 if $directive =~ /FILTER\ (html|csv|js|base64|css_class_quote|ics| quoteUrls|time|uri|xml|lower|html_light| obsolete|inactive|closed|unitconvert| - txt|html_linebreak|markdown|none)\b/x; + txt|html_linebreak|none)\b/x; return 0; } |