summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Comment.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Comment.pm')
-rw-r--r--Bugzilla/Comment.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/Comment.pm b/Bugzilla/Comment.pm
index 8232f5ac1..7d7ac0d80 100644
--- a/Bugzilla/Comment.pm
+++ b/Bugzilla/Comment.pm
@@ -272,6 +272,9 @@ sub body_full {
else {
$body = $self->body;
}
+ if (!$self->is_markdown and !$self->already_wrapped) {
+ $body = wrap_cite($body);
+ }
if ($params->{wrap} and !$self->already_wrapped) {
$body = wrap_comment($body);
}