ObjectController: use setViewScript, not render

This commit is contained in:
Thomas Gelf 2016-03-26 16:45:06 +01:00
parent 311f9da850
commit dc43a40b41

View File

@ -135,7 +135,7 @@ abstract class ObjectController extends ActionController
$this->translate('Config preview: %s'), $this->translate('Config preview: %s'),
$object->object_name $object->object_name
); );
$this->render('object/show', null, true); $this->setViewScript('object/show');
} }
public function editAction() public function editAction()
@ -254,7 +254,7 @@ abstract class ObjectController extends ActionController
->loadTable('icingaObjectDatafield') ->loadTable('icingaObjectDatafield')
->setObject($object); ->setObject($object);
$this->render('object/fields', null, true); $this->setViewScript('object/fields');
} }
public function historyAction() public function historyAction()
@ -274,7 +274,7 @@ abstract class ObjectController extends ActionController
->setLastDeployedId($lastDeployedId) ->setLastDeployedId($lastDeployedId)
->filterObject('icinga_' . $type, $this->object->object_name) ->filterObject('icinga_' . $type, $this->object->object_name)
); );
$this->render('object/history', null, true); $this->setViewScript('object/history');
} }
protected function getType() protected function getType()