From: Roland Häder Date: Wed, 28 Oct 2009 01:42:37 +0000 (+0000) Subject: Fixes a missing array element X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=40aa5cf7efd1660f97e439c0674fa7cd36c1ebae Fixes a missing array element --- diff --git a/inc/libs/admins_functions.php b/inc/libs/admins_functions.php index ea9a4c14e9..4273537490 100644 --- a/inc/libs/admins_functions.php +++ b/inc/libs/admins_functions.php @@ -70,7 +70,7 @@ function adminsCheckAdminAcl ($action, $what) { // Shall I test for a main or sub menu? (action or what?) $acl_mode = 'failed'; - if ((getExtensionVersion('cache') >= '0.1.2') && (count($GLOBALS['cache_array']['admin_acls']) > 0)) { + if ((getExtensionVersion('cache') >= '0.1.2') && (isset($GLOBALS['cache_array']['admin_acls'])) && (count($GLOBALS['cache_array']['admin_acls']) > 0)) { // Lookup in cache if ((!empty($action)) && (isset($GLOBALS['cache_array']['admin_acls']['action_menu'][$adminId])) & ($GLOBALS['cache_array']['admin_acls']['action_menu'][$adminId] == $action)) { // Main menu line found