Commit 8356bb7e authored by Reed Loden's avatar Reed Loden

Bug 670169 - Escape '>' in js filter

[r=LpSolit a=LpSolit]
parent eccedd19
......@@ -655,6 +655,7 @@ sub create {
$var =~ s/\r/\\r/g;
$var =~ s/\@/\\x40/g; # anti-spam for email addresses
$var =~ s/</\\x3c/g;
$var =~ s/>/\\x3e/g;
return $var;
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment