diff options
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/index.php | 2 | ||||
-rw-r--r-- | phpBB/language/lang_english/lang_main.php | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/index.php b/phpBB/index.php index 54cd288c68..f9e1965725 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -408,7 +408,7 @@ else // we do this here because of the mark topics read cookie // code // -$page_title = $lang['Forum_Index']; +$page_title = $lang['Index']; include($phpbb_root_path . 'includes/page_header.'.$phpEx); // diff --git a/phpBB/language/lang_english/lang_main.php b/phpBB/language/lang_english/lang_main.php index 13de12e5a2..49658eea2a 100644 --- a/phpBB/language/lang_english/lang_main.php +++ b/phpBB/language/lang_english/lang_main.php @@ -96,6 +96,8 @@ $lang['AIM'] = "AIM Address"; $lang['MSNM'] = "MSN Messenger"; $lang['YIM'] = "Yahoo Messenger"; +$lang['Forum_Index'] = "%s Forum Index"; // eg. sitename Forum Index, %s can be removed if you prefer + $lang['Post_new_topic'] = "Post new topic"; $lang['Reply_to_topic'] = "Reply to topic"; $lang['Reply_with_quote'] = "Reply with quote"; @@ -172,8 +174,8 @@ $lang['Log_me_in'] = "Log me on automatically each visit"; // // Index page // +$lang['Index'] = "Index"; $lang['No_Posts'] = "No Posts"; -$lang['Forum_Index'] = "%s Forum Index"; // eg. sitename Forum Index, %s can be removed if you prefer $lang['No_forums'] = "This board has no forums"; $lang['Private_Message'] = "Private Message"; |