Custom Action : Added redirectToObjectList parameter

This commit is contained in:
Benjamin Renard 2011-12-15 11:22:51 +01:00
parent 878d52bcd5
commit 00d7795854

View file

@ -50,7 +50,12 @@ if(LSsession :: startLSsession()) {
LSsession :: addInfo(getFData(_('The custom action %{customAction} have been successfully execute on %{objectname}.'),array('objectname' => $objectname,'customAction' => $_GET['customAction'])));
}
}
LSsession :: redirect('view.php?LSobject='.$_GET['LSobject'].'&refresh');
if ($config['redirectToObjectList']) {
LSsession :: redirect('view.php?LSobject='.$_GET['LSobject'].'&refresh');
}
else {
LSsession :: redirect('view.php?LSobject='.$_GET['LSobject'].'&dn='.$_GET['dn']);
}
}
else {
LSerror :: addErrorCode('LSldapObject_31',array('objectname' => $objectname,'customAction' => $_GET['customAction']));