From 9f5a8a28783f66b15973ac3714d10d1c0fa05f6d Mon Sep 17 00:00:00 2001 From: Albert Ting Date: Sat, 2 Jan 2016 16:29:01 -0500 Subject: Bug 1202853 - Markdown doesn't work when adding a comment attachment r=dylan,a=dylan --- attachment.cgi | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'attachment.cgi') diff --git a/attachment.cgi b/attachment.cgi index e7fadf66f..ae9efef6a 100755 --- a/attachment.cgi +++ b/attachment.cgi @@ -548,9 +548,12 @@ sub insert { # Insert a comment about the new attachment into the database. my $comment = $cgi->param('comment'); $comment = '' unless defined $comment; + my $is_markdown = ($user->use_markdown + && $cgi->param('use_markdown')) ? 1 : 0; $bug->add_comment($comment, { isprivate => $attachment->isprivate, type => CMT_ATTACHMENT_CREATED, - extra_data => $attachment->id }); + extra_data => $attachment->id, + is_markdown => $is_markdown}); # Assign the bug to the user, if they are allowed to take it my $owner = ""; -- cgit v1.2.3-24-g4f1b