diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-10-10 23:39:40 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-10-10 23:39:40 +0000 |
commit | 06889f19fbfb5dd2b538b2059716afb54c7f7625 (patch) | |
tree | e8ac2e7c7f3817783765d44c2abc8db8798003d1 /phpBB/viewforum.php | |
parent | f06057e929a1a286aea63585ac90e0323857a06f (diff) | |
download | forums-06889f19fbfb5dd2b538b2059716afb54c7f7625.tar forums-06889f19fbfb5dd2b538b2059716afb54c7f7625.tar.gz forums-06889f19fbfb5dd2b538b2059716afb54c7f7625.tar.bz2 forums-06889f19fbfb5dd2b538b2059716afb54c7f7625.tar.xz forums-06889f19fbfb5dd2b538b2059716afb54c7f7625.zip |
Mental note - don't make mental notes, you forget them ... fixed lack of forum name appearing in title
git-svn-id: file:///svn/phpbb/trunk@1162 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewforum.php')
-rw-r--r-- | phpBB/viewforum.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index 23d5b15367..1ad3c7cd96 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -615,7 +615,7 @@ else // // Dump out the page header and load viewforum template // -$page_title = $lang['View_forum'] . " - $forum_name"; +$page_title = $lang['View_forum'] . " - " . $forum_row['forum_name']; include($phpbb_root_path . 'includes/page_header.'.$phpEx); // |