mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-12-18 22:43:47 +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.
|
* @retval boolean True si l'initialisation à réussi, false sinon.
|
||||||
*/
|
*/
|
||||||
public static function initialize() {
|
public static function initialize() {
|
||||||
|
try {
|
||||||
if (!self :: startLSconfig()) {
|
if (!self :: startLSconfig()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -457,6 +458,10 @@ class LSsession {
|
||||||
|
|
||||||
self :: loadLSaddons();
|
self :: loadLSaddons();
|
||||||
self :: loadLSauth();
|
self :: loadLSauth();
|
||||||
|
}
|
||||||
|
catch (Exception $e) {
|
||||||
|
die('LSsession : fail to initialize session. Error : '.$e->getMessage());
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue