From 9fd391a819f09baef19562fb201bf90262f89944 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Mon, 4 Mar 2019 14:57:57 +0100 Subject: [PATCH] Make always basic checks while browsing pandora Former-commit-id: db93bfdaa674cd2d632153825c37a8a41152dc2c --- pandora_console/include/functions_config.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index ce69858132..d738d60925 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -2684,9 +2684,7 @@ function config_check() if (enterprise_installed() === false) { $supervisor = new ConsoleSupervisor(false); $supervisor->run(); - } else if ($config['cron_last_run'] == 0 - || (get_system_time() - $config['cron_last_run']) > 3600 - ) { + } else { $supervisor = new ConsoleSupervisor(false); $supervisor->runBasic(); }