summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Template.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Template.pm')
-rw-r--r--Bugzilla/Template.pm7
1 files changed, 7 insertions, 0 deletions
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.