diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-11-22 11:35:51 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-11-22 11:35:51 +0100 |
commit | e283611dc247d1ea08c6257105887279d82f567c (patch) | |
tree | 6ff6ee05542704ba513a56086b5ca0ac57fd351b | |
parent | 8489e0bdc29b89758beca72e506b5717c4dad590 (diff) | |
parent | 4cb930c2c1df393972a29f450695b6f39558d278 (diff) | |
download | forums-e283611dc247d1ea08c6257105887279d82f567c.tar forums-e283611dc247d1ea08c6257105887279d82f567c.tar.gz forums-e283611dc247d1ea08c6257105887279d82f567c.tar.bz2 forums-e283611dc247d1ea08c6257105887279d82f567c.tar.xz forums-e283611dc247d1ea08c6257105887279d82f567c.zip |
Merge pull request #3161 from Crizz0/ticket/12885
[ticket/12885] New if for Index-page - board-index-text switch
-rw-r--r-- | phpBB/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index a36d74e0e9..df6932f6c0 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -185,7 +185,7 @@ $template->assign_vars(array( 'U_MCP' => ($auth->acl_get('m_') || $auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=main&mode=front', true, $user->session_id) : '') ); -$page_title = $user->lang['INDEX']; +$page_title = ($config['board_index_text'] !== '') ? $config['board_index_text'] : $user->lang['INDEX']; /** * You can use this event to modify the page title and load data for the index |