summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Template.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Template.pm')
-rw-r--r--Bugzilla/Template.pm8
1 files changed, 0 insertions, 8 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index c3839b11b..81202965c 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -682,14 +682,6 @@ sub create {
return $var;
},
- # preserve newline by converting them to <br>
- html_br => sub {
- my ($var) = @_;
- $var = html_quote($var);
- $var =~ s/\n/<br>/g;
- return $var;
- },
-
# Prevents line break on hyphens and whitespaces.
no_break => sub {
my ($var) = @_;