From ec87e5310ad038abe4b2b329897638d866bf549a Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Tue, 14 Aug 2018 08:28:31 -0400 Subject: Revert "Bug 1456878 - Support markdown comments" This reverts commit fd850e00db835d2b84c59014c3b1021fea2294fc. --- attachment.cgi | 2 -- 1 file changed, 2 deletions(-) (limited to 'attachment.cgi') diff --git a/attachment.cgi b/attachment.cgi index 4aeba58c5..875de6a50 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -600,7 +600,6 @@ sub insert { my $comment = $cgi->param('comment'); $comment = '' unless defined $comment; $bug->add_comment($comment, { isprivate => $attachment->isprivate, - is_markdown => 1, type => CMT_ATTACHMENT_CREATED, extra_data => $attachment->id }); @@ -746,7 +745,6 @@ sub update { my $comment = $cgi->param('comment'); if (defined $comment && trim($comment) ne '') { $bug->add_comment($comment, { isprivate => $attachment->isprivate, - is_markdown => 1, type => CMT_ATTACHMENT_UPDATED, extra_data => $attachment->id }); } -- cgit v1.2.3-24-g4f1b