summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Template.pm
diff options
context:
space:
mode:
authorKoosha KM <koosha.khajeh@gmail.com>2014-09-11 15:55:01 +0200
committerDavid Lawrence <dkl@mozilla.com>2014-09-11 15:55:01 +0200
commitc11b241b985511c01803df200d31afb793f11903 (patch)
tree2a0ab29fd9f6ea126813b7e98cb1164931534cde /Bugzilla/Template.pm
parente1603d01bbc3523b622db2f295400aa5a5f14509 (diff)
downloadbugzilla-c11b241b985511c01803df200d31afb793f11903.tar.gz
bugzilla-c11b241b985511c01803df200d31afb793f11903.tar.xz
Bug 1064933: Bugzilla.pm does not compile without Text::Markdown
r=glob,a=sgreen
Diffstat (limited to 'Bugzilla/Template.pm')
-rw-r--r--Bugzilla/Template.pm5
1 files changed, 3 insertions, 2 deletions
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);
}