parent
0f1e0c182f
commit
f818cb3eb6
|
@ -122,12 +122,6 @@ abstract class ObjectController extends ActionController
|
|||
$this->view->form = $form = $this->loadForm($formName)->setDb($this->db());
|
||||
$form->setObject($object);
|
||||
|
||||
$url = Url::fromPath(
|
||||
sprintf('director/%s', $type),
|
||||
array('name' => $object->object_name)
|
||||
);
|
||||
$form->setSuccessUrl($url);
|
||||
|
||||
$this->view->title = sprintf($this->translate('Modify %s'), ucfirst($ltype));
|
||||
$this->view->form->handleRequest();
|
||||
|
||||
|
|
|
@ -507,12 +507,6 @@ abstract class DirectorObjectForm extends QuickForm
|
|||
if (! $object->hasBeenLoadedFromDb()) {
|
||||
|
||||
$this->setHttpResponseCode(201);
|
||||
if ($object instanceof IcingaObject && $object->hasProperty('object_name')) {
|
||||
$this->setSuccessUrl(
|
||||
'director/' . strtolower($this->getObjectName()),
|
||||
array('name' => $object->object_name)
|
||||
);
|
||||
}
|
||||
}
|
||||
$msg = sprintf(
|
||||
$object->hasBeenLoadedFromDb()
|
||||
|
@ -527,6 +521,12 @@ abstract class DirectorObjectForm extends QuickForm
|
|||
}
|
||||
$msg = $this->translate('No action taken, object has not been modified');
|
||||
}
|
||||
if ($object instanceof IcingaObject && $object->hasProperty('object_name')) {
|
||||
$this->setSuccessUrl(
|
||||
'director/' . strtolower($this->getObjectName()),
|
||||
array('name' => $object->object_name)
|
||||
);
|
||||
}
|
||||
|
||||
$this->redirectOnSuccess($msg);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue