1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 10:44:20 +02:00

Merge branch 'ticket/VSE/9532' into develop

* ticket/VSE/9532:
  [ticket/9532] Simplified page titles by removing meaningless text.
This commit is contained in:
Andreas Fischer
2010-12-28 21:51:55 +01:00
5 changed files with 5 additions and 4 deletions

View File

@@ -1744,7 +1744,7 @@ if (!request_var('t', 0) && !empty($topic_id))
}
// Output the page
page_header($user->lang['VIEW_TOPIC'] . ' - ' . $topic_data['topic_title'], true, $forum_id);
page_header($topic_data['topic_title'] . ($start ? ' - ' . sprintf($user->lang['PAGE_TITLE_NUMBER'], floor($start / $config['posts_per_page']) + 1) : ''), true, $forum_id);
$template->set_filenames(array(
'body' => ($view == 'print') ? 'viewtopic_print.html' : 'viewtopic_body.html')