ObjectController: fix issue with Apply tabs

This commit is contained in:
Thomas Gelf 2017-07-10 20:05:38 +02:00
parent 5ad777a7cc
commit 29abb6c6e7
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ abstract class ObjectController extends ActionController
}
$type = strtolower($this->getType());
if ($name = $this->params->get('name')) {
if ($this->params->get('name') || $this->params->get('id')) {
$this->loadObject();
}
$this->tabs(new ObjectTabs($type, $this->getAuth(), $this->object));