diff options
author | Byron Jones <glob@mozilla.com> | 2011-12-28 23:03:56 +0100 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2011-12-28 23:03:56 +0100 |
commit | 6f323ff54643622bcd31f6b7577ab1a23d16f590 (patch) | |
tree | a75d267bf140c001bd867f9498748cb60b3853f6 /Bugzilla | |
parent | 9314fd25d9bddaf4c0a9796821960cb1935ccd9a (diff) | |
download | bugzilla-6f323ff54643622bcd31f6b7577ab1a23d16f590.tar.gz bugzilla-6f323ff54643622bcd31f6b7577ab1a23d16f590.tar.xz |
Bug 697699 - (CVE-2011-3657) [SECURITY] XSS when viewing new charts or tabular and graphical reports in debug mode
r=gerv, a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Chart.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm index 760db135d..dfbf32a51 100644 --- a/Bugzilla/Chart.pm +++ b/Bugzilla/Chart.pm @@ -438,7 +438,7 @@ sub dump { require Data::Dumper; print "<pre>Bugzilla::Chart object:\n"; - print Data::Dumper::Dumper($self); + print html_quote(Data::Dumper::Dumper($self)); print "</pre>"; } |