From 09dfd3195c59fe27ee0e20dd600b24315b78dca6 Mon Sep 17 00:00:00 2001 From: Clinton Graham Date: Wed, 24 Jan 2018 11:36:41 -0500 Subject: [PATCH] pkp/pkp-lib#2291: Use the localized page title for the site, not the page header --- pages/index/IndexHandler.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/index/IndexHandler.inc.php b/pages/index/IndexHandler.inc.php index 5e16426b389..398f637e5ee 100644 --- a/pages/index/IndexHandler.inc.php +++ b/pages/index/IndexHandler.inc.php @@ -81,7 +81,7 @@ function index($args, $request) { $request->redirect($journal->getPath()); } - $templateMgr->assign('pageTitleTranslated', $site->getLocalizedPageHeaderTitle()); + $templateMgr->assign('pageTitleTranslated', $site->getLocalizedTitle()); $templateMgr->assign('about', $site->getLocalizedAbout()); $templateMgr->assign('journalFilesPath', $request->getBaseUrl() . '/' . Config::getVar('files', 'public_files_dir') . '/journals/');