fix not working forced password change on login screen

This commit is contained in:
Ralf Becker 2016-07-15 14:47:13 +02:00
parent e931d39a8d
commit 8256b99443

View File

@ -216,10 +216,17 @@ class Ads implements Backend
if(!$account_id || $GLOBALS['egw_info']['flags']['currentapp'] == 'login')
{
$admin = false;
if (!empty($GLOBALS['egw_info']['user']['account_id']) && $GLOBALS['egw_info']['user']['account_id'] > 0)
{
$username = $GLOBALS['egw_info']['user']['account_lid'];
$account_id = $GLOBALS['egw_info']['user']['account_id'];
}
else
{
$username = $GLOBALS['egw']->accounts->id2name($account_id);
}
}
else
{
$admin = true;
$username = $GLOBALS['egw']->accounts->id2name($account_id);