mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 02:14:45 +01:00
fix PHP 7.2 Warning: The each() function is deprecated
This commit is contained in:
parent
77b79f24b7
commit
753beb06ac
@ -258,20 +258,38 @@ class Auth
|
|||||||
Egw::invalidate_session_cache();
|
Egw::invalidate_session_cache();
|
||||||
}
|
}
|
||||||
Accounts::cache_invalidate($account_id);
|
Accounts::cache_invalidate($account_id);
|
||||||
// run changepwasswd hook
|
|
||||||
$GLOBALS['hook_values'] = array(
|
self::changepwd($old_passwd, $new_passwd, $account_id);
|
||||||
'account_id' => $account_id,
|
|
||||||
'account_lid' => Accounts::id2name($account_id),
|
|
||||||
'old_passwd' => $old_passwd,
|
|
||||||
'new_passwd' => $new_passwd,
|
|
||||||
);
|
|
||||||
Hooks::process($GLOBALS['hook_values']+array(
|
|
||||||
'location' => 'changepassword'
|
|
||||||
),False,True); // called for every app now, not only enabled ones)
|
|
||||||
}
|
}
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Call all changepwd hooks to re-encrypt mail credentials and let apps know about the change
|
||||||
|
*
|
||||||
|
* This method does not verification of the given passwords!
|
||||||
|
* ´
|
||||||
|
* @param string $old_passwd old password
|
||||||
|
* @param string $new_passwd =null new password, default session password
|
||||||
|
* @param int $account_id =null account_id, default current user
|
||||||
|
*/
|
||||||
|
static function changepwd($old_passwd, $new_passwd=null, $account_id=null)
|
||||||
|
{
|
||||||
|
if (!isset($account_id)) $account_id = $GLOBALS['egw']->session->account_id;
|
||||||
|
if (!isset($new_passwd)) $new_passwd = $GLOBALS['egw']->session->passwd;
|
||||||
|
|
||||||
|
// run changepwasswd hook
|
||||||
|
$GLOBALS['hook_values'] = array(
|
||||||
|
'account_id' => $account_id,
|
||||||
|
'account_lid' => Accounts::id2name($account_id),
|
||||||
|
'old_passwd' => $old_passwd,
|
||||||
|
'new_passwd' => $new_passwd,
|
||||||
|
);
|
||||||
|
Hooks::process($GLOBALS['hook_values']+array(
|
||||||
|
'location' => 'changepassword'
|
||||||
|
),False,True); // called for every app now, not only enabled ones)
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* return a random string of letters [0-9a-zA-Z] of size $size
|
* return a random string of letters [0-9a-zA-Z] of size $size
|
||||||
*
|
*
|
||||||
@ -610,7 +628,7 @@ class Auth
|
|||||||
);
|
);
|
||||||
|
|
||||||
// mark the securest algorithm for the user
|
// mark the securest algorithm for the user
|
||||||
list($securest) = each($hashes); reset($hashes);
|
$securest = key($hashes);
|
||||||
$hashes[$securest] .= ' ('.lang('securest').')';
|
$hashes[$securest] .= ' ('.lang('securest').')';
|
||||||
|
|
||||||
return $hashes;
|
return $hashes;
|
||||||
|
Loading…
Reference in New Issue
Block a user