From dd918455b8f09b5b8bccc05f1e69ce558f03333e Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Fri, 3 Sep 2021 21:07:05 +0200 Subject: [PATCH] fix missing global directive for settings --- _config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_config.php b/_config.php index 66a373b..d280339 100644 --- a/_config.php +++ b/_config.php @@ -19,6 +19,10 @@ $report =& $core->activityReport; $super = $core->auth->isSuperAdmin() && !empty($_REQUEST['super']); $redir = empty($_REQUEST['redir']) ? $list->getURL() . '#plugins' : $_REQUEST['redir']; +if ($super) { + $report->setGlobal(); +} + $combo_interval = [ __('every hour') => 3600, __('every 2 hours') => 7200,