]> git.mxchange.org Git - mailer.git/commitdiff
Moved to this position, so both are closer to each other
authorRoland Häder <roland@mxchange.org>
Thu, 27 Dec 2012 04:23:04 +0000 (04:23 +0000)
committerRoland Häder <roland@mxchange.org>
Thu, 27 Dec 2012 04:23:04 +0000 (04:23 +0000)
inc/libs/admins_functions.php

index 46ac5a0f89d08b328ebd2c05f36c7838f308c344..e50ce362a3a9b6f3e72e81c345232f853d9e3f5e 100644 (file)
@@ -53,9 +53,6 @@ function isAdminsAllowedByAcl ($action, $what) {
                return $GLOBALS[__FUNCTION__][$adminId][$action][$what];
        }
 
-       // But default result is failed
-       $GLOBALS[__FUNCTION__][$adminId][$action][$what] = FALSE;
-
        // Get admin's defult access right
        $default = getAdminDefaultAcl($adminId);
 
@@ -123,6 +120,9 @@ function isAdminsAllowedByAcl ($action, $what) {
                SQL_FREERESULT($result);
        }
 
+       // But default result is failed
+       $GLOBALS[__FUNCTION__][$adminId][$action][$what] = FALSE;
+
        // Check ACL and (maybe) allow
        //* DEBUG: */ debugOutput('default='.$default.',acl_mode='.$aclMode.',parent='.intval($parent));
        if ((($default == 'allow') && ($aclMode != 'deny')) || (($default == 'deny') && ($aclMode == 'allow')) || ($parent === TRUE) || (($default == 'NO-ACL') && ($aclMode == 'failed') && ($parent === FALSE))) {