aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla.pm')
-rw-r--r--Bugzilla.pm11
1 files changed, 0 insertions, 11 deletions
diff --git a/Bugzilla.pm b/Bugzilla.pm
index 048e72d48..c3f5780b0 100644
--- a/Bugzilla.pm
+++ b/Bugzilla.pm
@@ -397,13 +397,6 @@ sub logout_request {
# there. Don't rely on it: use Bugzilla->user->login instead!
}
-sub markdown {
- return if !Bugzilla->feature('markdown');
-
- require Bugzilla::Markdown;
- return $_[0]->request_cache->{markdown} ||= Bugzilla::Markdown->new();
-}
-
sub job_queue {
require Bugzilla::JobQueue;
return $_[0]->request_cache->{job_queue} ||= Bugzilla::JobQueue->new();
@@ -954,10 +947,6 @@ Returns the local timezone of the Bugzilla installation,
as a DateTime::TimeZone object. This detection is very time
consuming, so we cache this information for future references.
-=item C<markdown>
-
-The current L<Markdown|Bugzilla::Markdown> object, to be used for Markdown rendering.
-
=item C<job_queue>
Returns a L<Bugzilla::JobQueue> that you can use for queueing jobs.