Use "self"
This commit is contained in:
parent
b269a2da87
commit
73b0af52fb
1 changed files with 2 additions and 2 deletions
|
@ -1921,9 +1921,9 @@ class Item
|
||||||
if ($user['allow_cid'] || $user['allow_gid'] || $user['deny_cid'] || $user['deny_gid']) {
|
if ($user['allow_cid'] || $user['allow_gid'] || $user['deny_cid'] || $user['deny_gid']) {
|
||||||
$private = self::PRIVATE;
|
$private = self::PRIVATE;
|
||||||
} elseif (DI::pConfig()->get($user['uid'], 'system', 'unlisted')) {
|
} elseif (DI::pConfig()->get($user['uid'], 'system', 'unlisted')) {
|
||||||
$private = Item::UNLISTED;
|
$private = self::UNLISTED;
|
||||||
} else {
|
} else {
|
||||||
$private = Item::PUBLIC;
|
$private = self::PUBLIC;
|
||||||
}
|
}
|
||||||
|
|
||||||
$psid = PermissionSet::getIdFromACL(
|
$psid = PermissionSet::getIdFromACL(
|
||||||
|
|
Loading…
Reference in a new issue