Revert "move accesslist class to namespace"

This reverts commit a9711895cf.
This commit is contained in:
redmatrix
2016-02-20 00:49:37 -08:00
parent a9711895cf
commit dfbe2eaf98
15 changed files with 22 additions and 22 deletions

View File

@@ -65,7 +65,7 @@ function thing_init(&$a) {
if((! $name) || (! $translated_verb))
return;
$acl = new Zotlabs\Access\AccessList($channel);
$acl = new AccessList($channel);
if(array_key_exists('contact_allow',$_REQUEST)
|| array_key_exists('group_allow',$_REQUEST)
@@ -271,7 +271,7 @@ function thing_content(&$a) {
return;
}
$acl = new Zotlabs\Access\AccessList($channel);
$acl = new AccessList($channel);
$channel_acl = $acl->get();
$lockstate = (($acl->is_private()) ? 'lock' : 'unlock');