From 8f405c09b2ef1db943aaea9201785d93cd35f86e Mon Sep 17 00:00:00 2001 From: Albert Ting Date: Sat, 2 Jan 2016 16:20:22 -0500 Subject: Bug 688205 - quoted text inside comments should wrap r=dylan,a=dylan --- Bugzilla/Template.pm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'Bugzilla/Template.pm') diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 9398ca4b5..3cbff4733 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -972,6 +972,13 @@ sub create { return sub { wrap_comment($_[0], $cols) } }, 1], + # Wrap cited text + wrap_cite => [ + sub { + my ($context, $cols) = @_; + return sub { wrap_cite($_[0], $cols) } + }, 1], + # We force filtering of every variable in key security-critical # places; we have a none filter for people to use when they # really, really don't want a variable to be changed. -- cgit v1.2.3-24-g4f1b