diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index dd8b8f5661..66c8a53706 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2011-03-30 Sergio Martin + + * include/graphs/functions_pchart.php: Fixed bad + legend show condition + 2011-03-30 Javier Lanz * godmode/reporting/reporting_builder.item_editor.php: Removed the option to select 'show graph' in general reports diff --git a/pandora_console/include/graphs/functions_pchart.php b/pandora_console/include/graphs/functions_pchart.php index fc6a3938bd..714fc24e61 100755 --- a/pandora_console/include/graphs/functions_pchart.php +++ b/pandora_console/include/graphs/functions_pchart.php @@ -322,7 +322,7 @@ function pch_vertical_graph ($graph_type, $index, $data, $width, $height, $rgb_c $scaleSettings = array("GridR"=>200,"GridG"=>200,"GridB"=>200,"DrawSubTicks"=>TRUE,"CycleBackground"=>TRUE, "Mode"=>SCALE_MODE_START0, "XMargin" => 40, "LabelRotation" => 90); $myPicture->drawScale($scaleSettings); - if($show_legend) { + if(is_array($legend) && !empty($legend)) { /* Write the chart legend */ $myPicture->drawLegend($height/2,$width/1.8,array("Style"=>LEGEND_NOBORDER,"Mode"=>LEGEND_HORIZONTAL)); }