summaryrefslogtreecommitdiffstats
path: root/report.cgi
diff options
context:
space:
mode:
authorgerv%gerv.net <>2002-11-13 17:29:12 +0100
committergerv%gerv.net <>2002-11-13 17:29:12 +0100
commit8cd838d6aa5e4a42e4989aa034f7dc452c0581fb (patch)
treeb4a9cd77466bf1083ff14d0d1973e07784a305f1 /report.cgi
parent505f37c53861fb92d54eb5e65eac6b0801a43e3d (diff)
downloadbugzilla-8cd838d6aa5e4a42e4989aa034f7dc452c0581fb.tar.gz
bugzilla-8cd838d6aa5e4a42e4989aa034f7dc452c0581fb.tar.xz
Bug 178043 - Make it possible to have vertical x-axis labels. Patch by gerv; r=joel.
Diffstat (limited to 'report.cgi')
-rwxr-xr-xreport.cgi1
1 files changed, 1 insertions, 0 deletions
diff --git a/report.cgi b/report.cgi
index 91d5074bc..5680ec466 100755
--- a/report.cgi
+++ b/report.cgi
@@ -230,6 +230,7 @@ elsif ($action eq "plot") {
# If action is "plot", we will be using a format as normal (pie, bar etc.)
# and a ctype as normal (currently only png.)
$vars->{'cumulate'} = $cgi->param('cumulate') ? 1 : 0;
+ $vars->{'x_labels_vertical'} = $cgi->param('x_labels_vertical') ? 1 : 0;
$vars->{'data'} = \@image_data;
}
else {