From: Reed Loden Date: Fri, 8 Jul 2011 18:08:46 +0000 (-0700) Subject: Bug 670169 - Escape '>' in js filter X-Git-Tag: bugzilla-4.1.3~42 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8356bb7edf60f6956d825a2aef79dad6e087321b;p=thirdparty%2Fbugzilla.git Bug 670169 - Escape '>' in js filter [r=LpSolit a=LpSolit] --- diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 8a7f538bd0..726ca1ca3b 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -655,6 +655,7 @@ sub create { $var =~ s/\r/\\r/g; $var =~ s/\@/\\x40/g; # anti-spam for email addresses $var =~ s//\\x3e/g; return $var; },