aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-11-04 21:46:41 +0000
committerDavid Lawrence <dkl@mozilla.com>2014-11-04 21:46:41 +0000
commitf5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f (patch)
treeb95c7e398739df2b8447d93a32a1b10f2c9fc2e7 /Bugzilla.pm
parentfc62fd4082c76068c2062f4e50b88c0908db2be2 (diff)
downloadbugs-f5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f.tar
bugs-f5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f.tar.gz
bugs-f5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f.tar.bz2
bugs-f5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f.tar.xz
bugs-f5fc4a6d6bf930607d8dd5cd7ffeb78a1044918f.zip
Revert Bug 330707 - Add optional support for MarkDown
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.