From b0b4f0879799f9dd1d20e09ab6f7474f024f455a Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 12 Jul 2019 08:52:40 +0200 Subject: [PATCH] layout.phtml: Also include the default title in any title just like for XHR refs #3851 --- application/layouts/scripts/layout.phtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/layouts/scripts/layout.phtml b/application/layouts/scripts/layout.phtml index 42dcc1ede..f3699d6c5 100644 --- a/application/layouts/scripts/layout.phtml +++ b/application/layouts/scripts/layout.phtml @@ -27,7 +27,7 @@ $innerLayoutScript = $this->layout()->innerLayout . '.phtml'; - <?= $this->title ? $this->escape($this->title) : $this->defaultTitle ?> + <?= $this->title ? $this->escape($this->title) . ' :: ' : '' ?><?= $this->defaultTitle ?>