mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 09:59:06 +01:00
- create.php : Ajout d'un message final et utilisation pour la redirection de la
méthode LSsession :: redirect()
This commit is contained in:
parent
af0508e8f7
commit
8f2a3c12d6
1 changed files with 7 additions and 2 deletions
|
@ -48,8 +48,13 @@ if($LSsession -> startLSsession()) {
|
|||
}
|
||||
if ($form->validate()) {
|
||||
// MàJ des données de l'objet LDAP
|
||||
if (($object -> updateData('create'))&&(!$GLOBALS['LSerror']->errorsDefined())) {
|
||||
header('Location: view.php?LSobject='.$LSobject.'&dn='.$object -> getDn());
|
||||
if ($object -> updateData('create')) {
|
||||
if (!$GLOBALS['LSerror']->errorsDefined()) {
|
||||
$GLOBALS['LSsession'] -> addInfo(_("L'objet a bien été ajouté."));
|
||||
}
|
||||
if ((!LSdebugDefined()) && !$GLOBALS['LSerror']->errorsDefined()) {
|
||||
$GLOBALS['LSsession'] -> redirect('view.php?LSobject='.$LSobject.'&dn='.$object -> getDn());
|
||||
}
|
||||
}
|
||||
}
|
||||
// Définition du Titre de la page
|
||||
|
|
Loading…
Reference in a new issue