2009-12-16 Miguel de Dios <miguel.dedios@artica.es>
* include/fgraph.php: fix print image error as tag <image> instead content file when there is error in data string. And add new type of graph, error graph. Fixes: 2908174 git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@2204 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
617074e1d3
commit
9255306789
|
@ -1,3 +1,10 @@
|
|||
2009-12-16 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/fgraph.php: fix print image error as tag <image> instead content
|
||||
file when there is error in data string. And add new type of graph, error
|
||||
graph.
|
||||
Fixes: 2908174
|
||||
|
||||
2009-12-16 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* ChangeLog: fix the days in the last dates.
|
||||
|
|
|
@ -1478,10 +1478,12 @@ function grafico_modulo_string ($id_agente_modulo, $period, $show_event,
|
|||
}
|
||||
|
||||
if ($valor_maximo <= 0) {
|
||||
graphic_error ();
|
||||
$image = "../../include/fgraph.php?tipo=graphic_error";
|
||||
print_image ($image, false, array ("border" => 0));
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if ($period <= 3600) {
|
||||
$title_period = __('Last hour');
|
||||
$time_format = 'G:i:s';
|
||||
|
@ -1673,6 +1675,7 @@ if ($graphic_type) {
|
|||
grafico_modulo_string ($id, $period, $draw_events, $width, $height, $label, $unit_name, $draw_alerts, $avg_only, $pure, $date);
|
||||
break;
|
||||
|
||||
case 'graphic_error':
|
||||
default:
|
||||
graphic_error ();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue