From b12dbd21abedcfab84b249df52c5e5a039e3d028 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Wed, 3 Oct 2018 17:52:23 -0400 Subject: no bug - make libcmark-gfm optional (#792) --- Bugzilla.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla.pm') diff --git a/Bugzilla.pm b/Bugzilla.pm index 56020b230..94defda3b 100644 --- a/Bugzilla.pm +++ b/Bugzilla.pm @@ -29,8 +29,6 @@ use Bugzilla::Flag; use Bugzilla::Hook; use Bugzilla::Install::Localconfig qw(read_localconfig); use Bugzilla::Install::Util qw(init_console include_languages); -use Bugzilla::Markdown::GFM; -use Bugzilla::Markdown::GFM::Parser; use Bugzilla::Memcached; use Bugzilla::Template; use Bugzilla::Token; @@ -750,6 +748,8 @@ sub check_rate_limit { } sub markdown_parser { + require Bugzilla::Markdown::GFM; + require Bugzilla::Markdown::GFM::Parser; return request_cache->{markdown_parser} ||= Bugzilla::Markdown::GFM::Parser->new( {extensions => [qw( autolink tagfilter table strikethrough)] } ); } -- cgit v1.2.3-24-g4f1b