diff options
author | Crizzo <mail@crizzo.de> | 2014-11-22 00:09:38 +0100 |
---|---|---|
committer | Crizzo <mail@crizzo.de> | 2014-11-22 00:09:38 +0100 |
commit | 4cb930c2c1df393972a29f450695b6f39558d278 (patch) | |
tree | e73763b5b7385873bc6d2b69efd9f957c3db2652 /phpBB | |
parent | 2e2ab7b485f76ab4000b5d8c47c846ff44c10a33 (diff) | |
download | forums-4cb930c2c1df393972a29f450695b6f39558d278.tar forums-4cb930c2c1df393972a29f450695b6f39558d278.tar.gz forums-4cb930c2c1df393972a29f450695b6f39558d278.tar.bz2 forums-4cb930c2c1df393972a29f450695b6f39558d278.tar.xz forums-4cb930c2c1df393972a29f450695b6f39558d278.zip |
[ticket/12885] New if for Index-page - board-index-text switch
PHPBB3-12885
Diffstat (limited to 'phpBB')
-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 |