mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-12-18 14:33:49 +01:00
- index_ajax.php : Utilisation de la méthode displayAjaxReturn()
This commit is contained in:
parent
e598212d76
commit
cecc880f5a
1 changed files with 3 additions and 16 deletions
|
@ -7,7 +7,8 @@ $GLOBALS['LSsession'] = new LSsession();
|
||||||
|
|
||||||
if (($_REQUEST['template'] != 'login')&&($_REQUEST['template'] != 'recoverPassword')) {
|
if (($_REQUEST['template'] != 'login')&&($_REQUEST['template'] != 'recoverPassword')) {
|
||||||
if ( !$GLOBALS['LSsession'] -> startLSsession() ) {
|
if ( !$GLOBALS['LSsession'] -> startLSsession() ) {
|
||||||
$_ERRORS = 'LSsession : Impossible d\'initialiser la LSsession.';
|
$GLOBALS['LSerror'] -> addErrorCode(1022);
|
||||||
|
$_ERRORS = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$data=NULL;
|
$data=NULL;
|
||||||
|
@ -417,20 +418,6 @@ if (!isset($_ERRORS)) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($GLOBALS['LSerror']->errorsDefined()) {
|
$GLOBALS['LSsession'] -> displayAjaxReturn($data);
|
||||||
$data['LSerror'] = $GLOBALS['LSerror']->getErrors();
|
|
||||||
}
|
|
||||||
else if (isset($_ERRORS)) {
|
|
||||||
$data['LSerror'] = $_ERRORS;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (isset($_REQUEST['imgload'])) {
|
|
||||||
$data['imgload'] = $_REQUEST['imgload'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if (LSdebugDefined()) {
|
|
||||||
$data['LSdebug'] = LSdebug_print(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
echo json_encode($data);
|
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue