From 1bba211086fed2e09b4221eee151684270dae3f6 Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Wed, 18 Aug 2021 15:07:34 +0200 Subject: [PATCH] Fix issue with redeclaration of functions_metaconsole.php --- pandora_console/include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 45fbcf1077..12bfc692d5 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -1585,7 +1585,7 @@ function enterprise_include($filename, $variables=[]) extract($variables); } - include $filepath; + include_once $filepath; return true; }