Fix ACLFormatterTest
- Add nullable to expand() function again - Add angle bracket support to toString()
This commit is contained in:
parent
bc18cde412
commit
aa7be41728
6 changed files with 51 additions and 24 deletions
|
@ -64,10 +64,10 @@ function lockview_content(App $a)
|
|||
/** @var ACLFormatter $aclFormatter */
|
||||
$aclFormatter = BaseObject::getClass(ACLFormatter::class);
|
||||
|
||||
$allowed_users = $aclFormatter->expand($item['allow_cid'] ?? '');
|
||||
$allowed_groups = $aclFormatter->expand($item['allow_gid'] ?? '');
|
||||
$deny_users = $aclFormatter->expand($item['deny_cid'] ?? '');
|
||||
$deny_groups = $aclFormatter->expand($item['deny_gid'] ?? '');
|
||||
$allowed_users = $aclFormatter->expand($item['allow_cid']);
|
||||
$allowed_groups = $aclFormatter->expand($item['allow_gid']);
|
||||
$deny_users = $aclFormatter->expand($item['deny_cid']);
|
||||
$deny_groups = $aclFormatter->expand($item['deny_gid']);
|
||||
|
||||
$o = L10n::t('Visible to:') . '<br />';
|
||||
$l = [];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue