mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 07:53:39 +01:00
ignore exception, as it blocks session creation, if database is not writable
This commit is contained in:
parent
12c2984acf
commit
4a14e0d36b
@ -252,7 +252,13 @@ class Session
|
||||
$config->value('num_unsuccessful_ip',$GLOBALS['egw_info']['server']['num_unsuccessful_ip']);
|
||||
$config->value('install_id',$GLOBALS['egw_info']['server']['install_id']);
|
||||
$config->value('max_history',$GLOBALS['egw_info']['server']['max_history']);
|
||||
$config->save_repository();
|
||||
try
|
||||
{
|
||||
$config->save_repository();
|
||||
}
|
||||
catch (Db\Exception $e) {
|
||||
_egw_log_exception($e); // ignore exception, as it blocks session creation, if database is not writable
|
||||
}
|
||||
}
|
||||
}
|
||||
self::set_cookiedomain();
|
||||
|
Loading…
Reference in New Issue
Block a user