diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/user/helpers/user_installer.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/modules/user/helpers/user_installer.php b/modules/user/helpers/user_installer.php index 8a583211..731a4a9e 100644 --- a/modules/user/helpers/user_installer.php +++ b/modules/user/helpers/user_installer.php @@ -75,8 +75,13 @@ class user_installer { $root = ORM::factory("item", 1); access::allow($guest, "view", $root); - access::allow($guest, "view", $root); + access::allow($guest, "view_full", $root); + access::allow($registered, "view", $root); + access::allow($registered, "view_full", $root); + + access::allow($admin, "view", $root); + access::allow($admin, "view_full", $root); access::allow($admin, "edit", $root); } } |