silence warning about array_flip on array(null,0)

This commit is contained in:
Klaus Leithoff 2014-11-25 11:55:29 +00:00
parent 4a2d408a42
commit 60ff83c8d6

View File

@ -1477,7 +1477,7 @@ class emailadmin_account implements ArrayAccess
{ {
if (!isset($account['acc_imap_username'])) if (!isset($account['acc_imap_username']))
{ {
$account += emailadmin_credentials::read($account['acc_id'], null, array($account_id, 0)); $account += emailadmin_credentials::read($account['acc_id'], null, ($account_id?array($account_id, 0):null));
} }
if (empty($account['acc_imap_username']) && $account['acc_imap_logintype'] && if (empty($account['acc_imap_username']) && $account['acc_imap_logintype'] &&
(!isset($account_id) || $account_id == $GLOBALS['egw_info']['user']['account_id'])) (!isset($account_id) || $account_id == $GLOBALS['egw_info']['user']['account_id']))