2011-05-05 Miguel de Dios <miguel.dedios@artica.es>
* include/functions_visual_map.php, include/ajax/visual_console_builder.ajax.php: fixed the include the new graph engine in the ajax calls. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@4309 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
1d2306cf68
commit
66ad4324de
|
@ -24,6 +24,9 @@ if (! check_acl ($config['id_user'], 0, "IW")) {
|
|||
exit;
|
||||
}
|
||||
|
||||
$ajax = true;
|
||||
|
||||
|
||||
require_once('godmode/reporting/visual_console_builder.constans.php');
|
||||
require_once('include/functions_visual_map.php');
|
||||
require_once($config['homedir'] . "/include/functions_agents.php");
|
||||
|
|
|
@ -20,8 +20,13 @@
|
|||
*/
|
||||
|
||||
global $config;
|
||||
|
||||
require_once ('functions_graph.php');
|
||||
|
||||
//Fix ajax include this file.
|
||||
global $ajax;
|
||||
|
||||
if (!isset($ajax)) {
|
||||
require_once ('functions_graph.php');
|
||||
}
|
||||
require_once ($config['homedir'].'/include/functions_agents.php');
|
||||
require_once ($config['homedir'].'/include/functions_modules.php');
|
||||
require_once ($config['homedir'].'/include/functions_users.php');
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2011-05-05 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* include/functions_visual_map.php,
|
||||
include/ajax/visual_console_builder.ajax.php: fixed the include the new
|
||||
graph engine in the ajax calls.
|
||||
|
||||
2011-05-04 Miguel de Dios <miguel.dedios@artica.es>
|
||||
|
||||
* util/pandora_xml_stress.pl: changed the source code to generate local conf
|
||||
|
|
Loading…
Reference in New Issue