mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-26 03:43:08 +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()) {
|
if ($form->validate()) {
|
||||||
// MàJ des données de l'objet LDAP
|
// MàJ des données de l'objet LDAP
|
||||||
if (($object -> updateData('create'))&&(!$GLOBALS['LSerror']->errorsDefined())) {
|
if ($object -> updateData('create')) {
|
||||||
header('Location: view.php?LSobject='.$LSobject.'&dn='.$object -> getDn());
|
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
|
// Définition du Titre de la page
|
||||||
|
|
Loading…
Reference in a new issue