mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-17 02:05:19 +02:00
Adapt naming convention
This commit is contained in:
parent
3eb3e0b5ce
commit
c9e1098dd2
7 changed files with 28 additions and 30 deletions
|
@ -152,10 +152,10 @@ function events_post(App $a)
|
|||
/** @var ACLFormatter $aclFormatter */
|
||||
$aclFormatter = BaseObject::getClass(ACLFormatter::class);
|
||||
|
||||
$str_group_allow = $aclFormatter->aclToString($_POST['group_allow'] ?? '');
|
||||
$str_contact_allow = $aclFormatter->aclToString($_POST['contact_allow'] ?? '');
|
||||
$str_group_deny = $aclFormatter->aclToString($_POST['group_deny'] ?? '');
|
||||
$str_contact_deny = $aclFormatter->aclToString($_POST['contact_deny'] ?? '');
|
||||
$str_group_allow = $aclFormatter->toString($_POST['group_allow'] ?? '');
|
||||
$str_contact_allow = $aclFormatter->toString($_POST['contact_allow'] ?? '');
|
||||
$str_group_deny = $aclFormatter->toString($_POST['group_deny'] ?? '');
|
||||
$str_contact_deny = $aclFormatter->toString($_POST['contact_deny'] ?? '');
|
||||
|
||||
// Undo the pseudo-contact of self, since there are real contacts now
|
||||
if (strpos($str_contact_allow, '<' . $self . '>') !== false) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue