From 1b989c168b8811ee4838b6c037435d54814f1943 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 6 Nov 2023 14:00:37 +0100 Subject: [PATCH] #11126 fixed error ajax --- pandora_console/include/lib/TacticalView/elements/Database.php | 1 + pandora_console/include/lib/TacticalView/elements/Overview.php | 1 + 2 files changed, 2 insertions(+) diff --git a/pandora_console/include/lib/TacticalView/elements/Database.php b/pandora_console/include/lib/TacticalView/elements/Database.php index 21f8053163..442cfc78a4 100644 --- a/pandora_console/include/lib/TacticalView/elements/Database.php +++ b/pandora_console/include/lib/TacticalView/elements/Database.php @@ -35,6 +35,7 @@ class Database extends Element public function __construct() { parent::__construct(); + include_once $config['homedir'].'/include/graphs/fgraph.php'; $this->title = __('Database'); $this->ajaxMethods = [ 'getStatus', diff --git a/pandora_console/include/lib/TacticalView/elements/Overview.php b/pandora_console/include/lib/TacticalView/elements/Overview.php index 1e9534b652..8694608e98 100644 --- a/pandora_console/include/lib/TacticalView/elements/Overview.php +++ b/pandora_console/include/lib/TacticalView/elements/Overview.php @@ -35,6 +35,7 @@ class Overview extends Element public function __construct() { global $config; + include_once $config['homedir'].'/include/graphs/fgraph.php'; parent::__construct(); if (is_ajax() === true) { include_once $config['homedir'].'/include/functions_servers.php';