diff options
Diffstat (limited to 'include/menu.php')
-rw-r--r-- | include/menu.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/menu.php b/include/menu.php index d90cefddb..075372515 100644 --- a/include/menu.php +++ b/include/menu.php @@ -299,7 +299,7 @@ function menu_add_item($menu_id, $uid, $arr) { $channel = get_app()->get_channel(); } - $acl = new Zotlabs\Access\AccessList($channel); + $acl = new AccessList($channel); $acl->set_from_array($arr); $p = $acl->get(); @@ -340,7 +340,7 @@ function menu_edit_item($menu_id, $uid, $arr) { $channel = get_app()->get_channel(); } - $acl = new Zotlabs\Access\AccessList($channel); + $acl = new AccessList($channel); $acl->set_from_array($arr); $p = $acl->get(); |