ObjectController: fix typo avoiding rendering...

...of disabled objects
This commit is contained in:
Thomas Gelf 2016-05-19 22:11:09 +02:00
parent 7622200f2e
commit 88c28db54f
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ abstract class ObjectController extends ActionController
$object->object_type = 'object'; $object->object_type = 'object';
} }
if ($this->view->isDisabledd) { if ($this->view->isDisabled) {
$object->disabled = 'n'; $object->disabled = 'n';
} }