diff options
Diffstat (limited to 'core/helpers/access.php')
-rw-r--r-- | core/helpers/access.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/core/helpers/access.php b/core/helpers/access.php index 71f9ca5b..f6bc93c9 100644 --- a/core/helpers/access.php +++ b/core/helpers/access.php @@ -222,10 +222,7 @@ class access_Core { foreach (ORM::factory("permission")->find_all() as $perm) { foreach (self::_get_all_groups() as $group) { $field = "{$perm->name}_{$group->id}"; - - //Temporary disable this to get tests to pass - //$access_cache->$field = $parent_access_cache->$field; - + $access_cache->$field = $parent_access_cache->$field; } $field = "{$perm->name}_0"; $access_cache->$field = $parent_access_cache->$field; |