2012-03-13 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/graph_builder.main.php: fixed lost require PHP functions file, that before the php crashed because it tryed to call to unknow function. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5759 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
e94d26e789
commit
3db0d3ac9d
|
@ -1,3 +1,9 @@
|
|||
2012-03-13 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/reporting/graph_builder.main.php: fixed lost require PHP functions
|
||||
file, that before the php crashed because it tryed to call to unknow
|
||||
function.
|
||||
|
||||
2012-03-13 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* godmode/reporting/reporting_builder.preview.php: fixed when the Pandora
|
||||
|
|
|
@ -15,6 +15,8 @@
|
|||
|
||||
global $config;
|
||||
|
||||
require_once('include/functions_custom_graphs.php');
|
||||
|
||||
if (is_ajax ()) {
|
||||
$search_agents = (bool) get_parameter ('search_agents');
|
||||
|
||||
|
@ -63,7 +65,8 @@ if ($edit_graph) {
|
|||
$id_group = $graphInTgraph['id_group'];
|
||||
$width = $graphInTgraph['width'];
|
||||
$height = $graphInTgraph['height'];
|
||||
}else {
|
||||
}
|
||||
else {
|
||||
$id_agent = 0;
|
||||
$id_module = 0;
|
||||
$id_group = 0;
|
||||
|
|
Loading…
Reference in New Issue