diff options
author | Andreas Fischer <bantu@phpbb.com> | 2010-12-28 21:51:55 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2010-12-28 21:51:55 +0100 |
commit | 90ccdb4dad6521fe0431ab1e9373c5821156bc46 (patch) | |
tree | 202484aa2882972133c63706b7f68320b32175af /phpBB/viewforum.php | |
parent | 34a1b044a17ececdaa2d4df541f985c34b83b1ce (diff) | |
parent | 30035b94f5928d6eea2548563b1a1f7767f0e308 (diff) | |
download | forums-90ccdb4dad6521fe0431ab1e9373c5821156bc46.tar forums-90ccdb4dad6521fe0431ab1e9373c5821156bc46.tar.gz forums-90ccdb4dad6521fe0431ab1e9373c5821156bc46.tar.bz2 forums-90ccdb4dad6521fe0431ab1e9373c5821156bc46.tar.xz forums-90ccdb4dad6521fe0431ab1e9373c5821156bc46.zip |
Merge branch 'ticket/VSE/9532' into develop
* ticket/VSE/9532:
[ticket/9532] Simplified page titles by removing meaningless text.
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 2e12e410da..47d71849cb 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -142,7 +142,7 @@ else } // Dump out the page header and load viewforum template -page_header($user->lang['VIEW_FORUM'] . ' - ' . $forum_data['forum_name'], true, $forum_id); +page_header($forum_data['forum_name'] . ($start ? ' - ' . sprintf($user->lang['PAGE_TITLE_NUMBER'], floor($start / $config['topics_per_page']) + 1) : ''), true, $forum_id); $template->set_filenames(array( 'body' => 'viewforum_body.html') |