From 4dba797c3ee5f452db7279443407a7ff323fcb96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20B=C3=A9jean?= <nicolas@bejean.eu> Date: Sun, 24 May 2020 18:03:05 +0200 Subject: [PATCH] Correction de l'affichage du nom du category widget dans la page edit --- Controller/Adminhtml/CategoryWidget/Edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/Adminhtml/CategoryWidget/Edit.php b/Controller/Adminhtml/CategoryWidget/Edit.php index b0b504b..8668fda 100755 --- a/Controller/Adminhtml/CategoryWidget/Edit.php +++ b/Controller/Adminhtml/CategoryWidget/Edit.php @@ -75,7 +75,7 @@ class Edit extends CategoryWidget $id ? __('Edit Category Widget') : __('New Category Widget') ); $resultPage->getConfig()->getTitle()->prepend(__('Category Widget')); - $resultPage->getConfig()->getTitle()->prepend($model->getId() ? $model->getName() . ' (' . $model->getIdentifier() . ')' : __('New Category Widget')); + $resultPage->getConfig()->getTitle()->prepend($model->getId() ? $model->getTitle() . ' (' . $model->getIdentifier() . ')' : __('New Category Widget')); return $resultPage; } } -- GitLab