Fix lost password issue (#2552)

This commit is contained in:
Jörg Lehrke 2010-04-23 14:13:51 +00:00
parent 41f102b40e
commit 60d87a616d

View File

@ -397,6 +397,10 @@ class EGW_SyncML_State extends Horde_SyncML_State
. ') could not be not verified' ,
__FILE__, __LINE__, PEAR_LOG_ERROR);
}
if (empty($GLOBALS['egw_info']['user']['passwd']))
{
$GLOBALS['egw_info']['user']['passwd'] = $this->_password;
}
}
return ($this->_isAuthorized > 0);
}