Fixed the hbars for the report exception item. TICKET: #3153

(cherry picked from commit 63566dd3af)
This commit is contained in:
mdtrooper 2016-01-13 10:34:01 +01:00
parent 5679fa3f48
commit 9710362174
2 changed files with 25 additions and 18 deletions

View File

@ -1964,23 +1964,30 @@ function reporting_exception($report, $content, $type = 'dinamic',
$config['fontpath'],
$config['font_size'],
$ttl);
$return["chart"]["hbar"] = hbar_graph(
false,
$data_hbar,
600,
100,
array(),
array(),
"",
"",
true,
ui_get_full_url(false, false, false, false),
ui_get_full_url(false, false, false, false) . "/images/logo_vertical_water.png",
'',
'',
true,
$ttl,
true);
$params = array(
'flash_chart' => false,
'chart_data' => $data_hbar,
'width' => 600,
'height' => 25 * count($data_hbar),
'color' => array(),
'legend' => array(),
'long_index' => array(),
'no_data_image' => ui_get_full_url("images/image_problem.opaque.png", false, false, false),
'xaxisname' => "",
'yaxisname' => "",
'water_mark' => ui_get_full_url(false, false, false, false) . "/images/logo_vertical_water.png",
'font' => "",
'font_size' => "",
'unit' => "",
'ttl' => $ttl,
'homeurl' => ui_get_full_url(false, false, false, false),
'backgroundColor' => 'white'
);
$return["chart"]["hbar"] = call_user_func_array(
'hbar_graph',
$params);
}

View File

@ -579,7 +579,7 @@ function hbar_graph($flash_chart, $chart_data, $width, $height,
$id_graph = serialize_in_temp($graph, null, $ttl);
return "<img src='" . $homedir . "include/graphs/functions_pchart.php?static_graph=1&graph_type=hbar&ttl=".$ttl."&id_graph=".$id_graph."'>";
return "<img src='" . $homeurl . "include/graphs/functions_pchart.php?static_graph=1&graph_type=hbar&ttl=".$ttl."&id_graph=".$id_graph."'>";
}
}