From: Eric Bollengier Date: Wed, 15 Nov 2006 11:01:13 +0000 (+0000) Subject: ebl fix GD::Graph3d X-Git-Tag: Release-2.0.0~291 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bbeed972891bce8a56afd13124a4bd7c31d31e5a;p=bacula%2Fbacula ebl fix GD::Graph3d git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@3626 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/gui/bweb/cgi/bgraph.pl b/gui/bweb/cgi/bgraph.pl index ba5bd36872..3a967f7b8a 100755 --- a/gui/bweb/cgi/bgraph.pl +++ b/gui/bweb/cgi/bgraph.pl @@ -103,9 +103,10 @@ sub get_graph use GD::Graph::linespoints; $graph = GD::Graph::linespoints->new ( $arg->{width}, $arg->{height} ); - } elsif ($gtype eq 'bars3d') { - use GD::Graph::bars3d; - $graph = GD::Graph::bars3d->new ( $arg->{width}, $arg->{height} ); +# this doesnt works at this time +# } elsif ($gtype eq 'bars3d') { +# use GD::Graph::bars3d; +# $graph = GD::Graph::bars3d->new ( $arg->{width}, $arg->{height} ); } else { return undef; @@ -337,7 +338,7 @@ $limitq my @arg; # arg for plotting if (!$per_t) { # much better aspect - $gtype = 'lines'; + #$gtype = 'lines'; } else { push @arg, ("x_number_format" => undef, "x_min_value" => 0,