aboutsummaryrefslogtreecommitdiffstats
path: root/Bugzilla/Chart.pm
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2011-12-28 17:10:39 -0500
committerDave Lawrence <dlawrence@mozilla.com>2011-12-28 17:10:39 -0500
commitf8813fc6a94b4e8e6d5e77009458ed8cb5a856c7 (patch)
tree296e87acc2821814a20e53e91466621de93a1b99 /Bugzilla/Chart.pm
parentc60154086000258e8a9269d896aa8b9d41cb711c (diff)
downloadbugs-f8813fc6a94b4e8e6d5e77009458ed8cb5a856c7.tar
bugs-f8813fc6a94b4e8e6d5e77009458ed8cb5a856c7.tar.gz
bugs-f8813fc6a94b4e8e6d5e77009458ed8cb5a856c7.tar.bz2
bugs-f8813fc6a94b4e8e6d5e77009458ed8cb5a856c7.tar.xz
bugs-f8813fc6a94b4e8e6d5e77009458ed8cb5a856c7.zip
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/Chart.pm')
-rw-r--r--Bugzilla/Chart.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Chart.pm b/Bugzilla/Chart.pm
index 5022723dd..86dcf9d03 100644
--- a/Bugzilla/Chart.pm
+++ b/Bugzilla/Chart.pm
@@ -438,7 +438,7 @@ sub dump {
require Data::Dumper;
say "<pre>Bugzilla::Chart object:";
- print Data::Dumper::Dumper($self);
+ print html_quote(Data::Dumper::Dumper($self));
print "</pre>";
}