From 3ddd6291e41b61fe2d8ca2993bbe91ff54ba9897 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Fri, 28 Aug 2015 16:51:41 +0200 Subject: [PATCH] ObjectController: add missing title --- library/Director/Web/Controller/ObjectController.php | 1 + 1 file changed, 1 insertion(+) diff --git a/library/Director/Web/Controller/ObjectController.php b/library/Director/Web/Controller/ObjectController.php index 4e8e87e1..f64703ab 100644 --- a/library/Director/Web/Controller/ObjectController.php +++ b/library/Director/Web/Controller/ObjectController.php @@ -66,6 +66,7 @@ abstract class ObjectController extends ActionController $type = $this->getType(); $this->getTabs()->activate('render'); $this->view->object = $this->object; + $this->view->title = sprintf($this->translate('Config preview: %s'), $this->object->object_name); $this->render('object/show', null, true); }