From c11b241b985511c01803df200d31afb793f11903 Mon Sep 17 00:00:00 2001 From: Koosha KM Date: Thu, 11 Sep 2014 13:55:01 +0000 Subject: Bug 1064933: Bugzilla.pm does not compile without Text::Markdown r=glob,a=sgreen --- Bugzilla/Template.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Template.pm') diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 78a3e4120..aee7933ed 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -813,8 +813,9 @@ sub create { my $text = shift; return unless $text; - if ((ref($comment) eq 'HASH' && $comment->{is_markdown}) - || (ref($comment) eq 'Bugzilla::Comment' && $comment->is_markdown)) + if (Bugzilla->feature('markdown') + && ((ref($comment) eq 'HASH' && $comment->{is_markdown}) + || (ref($comment) eq 'Bugzilla::Comment' && $comment->is_markdown))) { return Bugzilla->markdown->markdown($text); } -- cgit v1.2.3-24-g4f1b