mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-12-18 14:33:49 +01:00
LSsession : Catch initialization exceptions
This commit is contained in:
parent
772cd8b0da
commit
40b8be065b
1 changed files with 17 additions and 12 deletions
|
@ -444,6 +444,7 @@ class LSsession {
|
|||
* @retval boolean True si l'initialisation à réussi, false sinon.
|
||||
*/
|
||||
public static function initialize() {
|
||||
try {
|
||||
if (!self :: startLSconfig()) {
|
||||
return;
|
||||
}
|
||||
|
@ -457,6 +458,10 @@ class LSsession {
|
|||
|
||||
self :: loadLSaddons();
|
||||
self :: loadLSauth();
|
||||
}
|
||||
catch (Exception $e) {
|
||||
die('LSsession : fail to initialize session. Error : '.$e->getMessage());
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue