Rename Core\Acl to Core\ACL

This commit is contained in:
Hypolite Petovan 2018-03-02 18:41:24 -05:00
parent 35d09fdad1
commit a7db21c8fd
11 changed files with 28 additions and 28 deletions

View file

@ -5,7 +5,7 @@
use Friendica\App;
use Friendica\Content\Text\BBCode;
use Friendica\Core\Acl;
use Friendica\Core\ACL;
use Friendica\Core\Config;
use Friendica\Core\L10n;
use Friendica\Core\Protocol;
@ -317,7 +317,7 @@ function display_content(App $a, $update = false, $update_uid = 0) {
'default_location' => $a->user['default-location'],
'nickname' => $a->user['nickname'],
'lockstate' => (is_array($a->user) && (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) || strlen($a->user['deny_cid']) || strlen($a->user['deny_gid'])) ? 'lock' : 'unlock'),
'acl' => Acl::getFullSelectorHTML($a->user, true),
'acl' => ACL::getFullSelectorHTML($a->user, true),
'bang' => '',
'visitor' => 'block',
'profile_uid' => local_user(),