ObjectController: show object name, not 'Modify..'

This commit is contained in:
Thomas Gelf 2016-03-20 12:00:49 +01:00
parent dda16fd0d0
commit 547b13d53f

View File

@ -91,7 +91,7 @@ abstract class ObjectController extends ActionController
&& $this->object->isExternal() && $this->object->isExternal()
&& ! in_array($this->object->getShortTableName(), $allowedExternals) && ! in_array($this->object->getShortTableName(), $allowedExternals)
) { ) {
return $this->externalObjectInfo(); return $this->externalObjectInfo();
} }
return $this->editAction(); return $this->editAction();
@ -148,7 +148,7 @@ abstract class ObjectController extends ActionController
$this->view->form = $form = $this->loadForm($formName)->setDb($this->db()); $this->view->form = $form = $this->loadForm($formName)->setDb($this->db());
$form->setObject($object); $form->setObject($object);
$this->view->title = sprintf($this->translate('Modify %s'), ucfirst($ltype)); $this->view->title = $object->object_name;
$this->view->form->handleRequest(); $this->view->form->handleRequest();
$this->view->actionLinks = $this->view->qlink( $this->view->actionLinks = $this->view->qlink(