mirror of
https://github.com/friendica/friendica
synced 2024-11-10 08:22:57 +00:00
Fix typo in ACL::getFullSelectorHTML
This commit is contained in:
parent
0ff4381305
commit
3a7ef7893f
1 changed files with 1 additions and 1 deletions
|
@ -359,7 +359,7 @@ class ACL extends BaseObject
|
|||
$pubmail_enabled = false;
|
||||
|
||||
if (function_exists('imap_open') && !Config::get('system', 'imap_disabled')) {
|
||||
$mailacct = DBA::selectFirst('mailacct', ['pubmail'], ['`uid` = ? AND `server` != ""', $user['úid']]);
|
||||
$mailacct = DBA::selectFirst('mailacct', ['pubmail'], ['`uid` = ? AND `server` != ""', $user['uid']]);
|
||||
if (DBA::isResult($mailacct)) {
|
||||
$mail_enabled = true;
|
||||
$pubmail_enabled = !empty($mailacct['pubmail']);
|
||||
|
|
Loading…
Reference in a new issue