aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions.php
diff options
context:
space:
mode:
authorTabitha Backoff <t_backoff@yahoo.com>2013-03-28 02:34:36 -0400
committerTabitha Backoff <t_backoff@yahoo.com>2013-03-28 02:34:36 -0400
commit9e5cde7f668a614ff74dc15d9c72df48dd114dbc (patch)
tree98e6cd2bffb0f566e3c3282593ffbb45902b1cc3 /phpBB/includes/functions.php
parentb583f6d8d9ad6ea3f2a1dafbfd479f8a2d67551c (diff)
downloadforums-9e5cde7f668a614ff74dc15d9c72df48dd114dbc.tar
forums-9e5cde7f668a614ff74dc15d9c72df48dd114dbc.tar.gz
forums-9e5cde7f668a614ff74dc15d9c72df48dd114dbc.tar.bz2
forums-9e5cde7f668a614ff74dc15d9c72df48dd114dbc.tar.xz
forums-9e5cde7f668a614ff74dc15d9c72df48dd114dbc.zip
Ticket# 11477 - Allow customisation of "Board index"
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r--phpBB/includes/functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 98a2c0db79..0dca9bb2dc 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -5292,7 +5292,7 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0
'BOARD_URL' => $board_url,
'L_LOGIN_LOGOUT' => $l_login_logout,
- 'L_INDEX' => $user->lang['FORUM_INDEX'],
+ 'L_INDEX' => ($config['board_home_text'] !== '') ? $config['board_home_text'] : $user->lang['FORUM_INDEX'],
'L_SITE_HOME' => ($config['site_home_text'] !== '') ? $config['site_home_text'] : $user->lang['HOME'],
'L_ONLINE_EXPLAIN' => $l_online_time,