mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
- modify.php : Pas de redirect lorsque le debug est activé
This commit is contained in:
parent
3ebcb1b2fd
commit
7560e44586
1 changed files with 3 additions and 1 deletions
|
@ -54,7 +54,9 @@ if($LSsession -> startLSsession()) {
|
||||||
// MàJ des données de l'objet LDAP
|
// MàJ des données de l'objet LDAP
|
||||||
if ($object -> updateData('modify')) {
|
if ($object -> updateData('modify')) {
|
||||||
$GLOBALS['LSsession'] -> addInfo(_("L'objet a bien été modifié."));
|
$GLOBALS['LSsession'] -> addInfo(_("L'objet a bien été modifié."));
|
||||||
$GLOBALS['LSsession'] -> redirect('view.php?LSobject='.$LSobject.'&dn='.$object -> getDn());
|
if (!$GLOBALS['LSdebug']['active']) {
|
||||||
|
$GLOBALS['LSsession'] -> redirect('view.php?LSobject='.$LSobject.'&dn='.$object -> getDn());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue