diff options
author | Byron Jones <bjones@mozilla.com> | 2013-11-19 17:20:39 +0100 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2013-11-19 17:20:39 +0100 |
commit | f1adcd997f1dc08b60004cd2fe9b356ace295f54 (patch) | |
tree | 6fad9ee3020773ffa03db341de2a7532e388e6c0 /Bugzilla | |
parent | f4b1c3da1d1ebacc04ebb65275d46e6df63416fa (diff) | |
download | bugzilla-f1adcd997f1dc08b60004cd2fe9b356ace295f54.tar.gz bugzilla-f1adcd997f1dc08b60004cd2fe9b356ace295f54.tar.xz |
Bug 929345: bug history/activity shouldn't collapse multi-line values to a single line
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Template.pm | 8 |
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) = @_; |