From 0d7cab6a7706e33b380d670f0945a111d2f0ac63 Mon Sep 17 00:00:00 2001 From: Dale Davies Date: Thu, 13 Apr 2023 22:37:07 +0100 Subject: [PATCH] Use translated string for home tag --- jumpapp/classes/Pages/HomePage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jumpapp/classes/Pages/HomePage.php b/jumpapp/classes/Pages/HomePage.php index 28467d4..79091bb 100644 --- a/jumpapp/classes/Pages/HomePage.php +++ b/jumpapp/classes/Pages/HomePage.php @@ -19,7 +19,7 @@ class HomePage extends AbstractPage { $template = $this->mustache->loadTemplate('header'); $greeting = null; if (!$this->config->parse_bool($this->config->get('showgreeting'))) { - $greeting = 'home'; + $greeting = $this->language->get('tags.home'); } $csrfsection = $this->session->getSection('csrf'); $unsplashdata = $this->cache->load('unsplash');