From 4974d1a850a807e82a0197ae745c34e60e2e51a9 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Mon, 7 Mar 2016 08:59:17 +0100 Subject: [PATCH] ObjectController: fix 'back' link style --- .../Director/Web/Controller/ObjectController.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/library/Director/Web/Controller/ObjectController.php b/library/Director/Web/Controller/ObjectController.php index 62acafb4..d5307c66 100644 --- a/library/Director/Web/Controller/ObjectController.php +++ b/library/Director/Web/Controller/ObjectController.php @@ -177,13 +177,12 @@ abstract class ObjectController extends ActionController ); $this->view->form->handleRequest(); - $this->view->actionLinks = $this->view->icon('left-big') - . ' ' - . $this->view->qlink( - sprintf($this->translate('back'), $this->translate(ucfirst($ltype))), - 'director/' . $ltype, - array('name' => $this->object->object_name) - ); + $this->view->actionLinks = $this->view->qlink( + sprintf($this->translate('back'), $this->translate(ucfirst($ltype))), + 'director/' . $ltype, + array('name' => $this->object->object_name), + array('class' => 'icon-left-big') + ); $this->render('object/form', null, true); }