From 9e88dc067a8696fea34c3a296eb679cdb8c0d1af Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 28 Dec 2020 08:24:24 +0100 Subject: [PATCH] Change title scheme format --- Controller/ErrorController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/ErrorController.php b/Controller/ErrorController.php index eb53209..b9a3188 100644 --- a/Controller/ErrorController.php +++ b/Controller/ErrorController.php @@ -23,7 +23,7 @@ class ErrorController extends DefaultController { $section = $exception->getStatusCode().' '.$this->translator->trans($exception->getStatusText()); //Set title - $title = $section.' - '.$this->translator->trans($this->config['site']['title']); + $title = $this->translator->trans($this->config['site']['title']).' - '.$section; //Set the message $message = $exception->getMessage(); -- 2.41.0