Use translated string for home tag

This commit is contained in:
Dale Davies
2023-04-13 22:37:07 +01:00
parent 7e07ffa401
commit 0d7cab6a77

View File

@@ -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');