mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-23 22:39:00 +01:00
if the number of days left until change of password is expired is negative, dont warn, require the change
This commit is contained in:
parent
abb976d0cf
commit
bf8b3211c8
@ -78,8 +78,8 @@ class auth
|
|||||||
// current style name for account last password change timestamp
|
// current style name for account last password change timestamp
|
||||||
$alpwchange='account_lastpwd_change';
|
$alpwchange='account_lastpwd_change';
|
||||||
// some debug output and develop options to move the horizons and warn levels around
|
// some debug output and develop options to move the horizons and warn levels around
|
||||||
//$GLOBALS['egw_info']['server']['change_pwd_every_x_days'] = 30;
|
//$GLOBALS['egw_info']['server']['change_pwd_every_x_days'] =35;
|
||||||
//$GLOBALS['egw_info']['server']['warn_about_upcoming_pwd_change']=43;
|
//$GLOBALS['egw_info']['server']['warn_about_upcoming_pwd_change']=5;
|
||||||
//echo egw_time::to('now','ts').'<br>';
|
//echo egw_time::to('now','ts').'<br>';
|
||||||
//echo "User changed password at:".egw_time::to($GLOBALS['egw_info']['user'][$alpwchange]).'<br>';
|
//echo "User changed password at:".egw_time::to($GLOBALS['egw_info']['user'][$alpwchange]).'<br>';
|
||||||
//echo "User password is ".((egw_time::to('now','ts')-$GLOBALS['egw_info']['user'][$alpwchange])/86400)." days old<br>";
|
//echo "User password is ".((egw_time::to('now','ts')-$GLOBALS['egw_info']['user'][$alpwchange])/86400)." days old<br>";
|
||||||
@ -134,7 +134,8 @@ class auth
|
|||||||
elseif (($passwordAgeBorder < $alpwchange_val) ||
|
elseif (($passwordAgeBorder < $alpwchange_val) ||
|
||||||
(
|
(
|
||||||
$GLOBALS['egw_info']['server']['warn_about_upcoming_pwd_change'] &&
|
$GLOBALS['egw_info']['server']['warn_about_upcoming_pwd_change'] &&
|
||||||
$GLOBALS['egw_info']['server']['warn_about_upcoming_pwd_change'] > $daysLeftUntilChangeReq
|
$GLOBALS['egw_info']['server']['warn_about_upcoming_pwd_change'] > $daysLeftUntilChangeReq &&
|
||||||
|
$daysLeftUntilChangeReq > 0
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user