Редактируем файл:
<b>sources/action_public/topics.php</b>
Находим:
<!--c1--><div class='codetop'>Код</div><div class='codemain'><!--ec1-->$this->ipsclass->print->add_output( $this->output );
$this->ipsclass->print->do_output( array( 'TITLE' => $this->topic['title'] . ' - ' . $this->ipsclass->vars['board_name'],
'JS' => $this->ipsclass->compiled_templates['skin_global']->get_rte_css(),
'NAV' => $this->nav,
)  
;<!--c2--></div><!--ec2-->
Заменяем на:
<!--c1--><div class='codetop'>Код</div><div class='codemain'><!--ec1-->// Pass it to our print routine
$this->ipsclass->print->add_output( $this->output );
if($this->ipsclass->input['st'] == 0 || !isset($this->ipsclass->input['st']))
{
$this->mytitle = ' - Страница 1';
}
else
{
$pagenum = $this->ipsclass->input['st'] + $this->ipsclass->vars['display_max_posts'];
$pagenum2 = $pagenum / $this->ipsclass->vars['display_max_posts'];
$this->mytitle = ' - Страница '.$pagenum2;
}
$this->ipsclass->print->do_output( array( 'TITLE' => $this->topic['title'] . $this->mytitle . ' - ' . $this->ipsclass->vars['board_name'],
'JS' => $this->ipsclass->compiled_templates['skin_global']->get_rte_css(),
'NAV' => $this->nav,
)  
;<!--c2--></div><!--ec2-->
<b>sources/action_public/topics.php</b>
Находим:
<!--c1--><div class='codetop'>Код</div><div class='codemain'><!--ec1-->$this->ipsclass->print->add_output( $this->output );
$this->ipsclass->print->do_output( array( 'TITLE' => $this->topic['title'] . ' - ' . $this->ipsclass->vars['board_name'],
'JS' => $this->ipsclass->compiled_templates['skin_global']->get_rte_css(),
'NAV' => $this->nav,
)  
Заменяем на:
<!--c1--><div class='codetop'>Код</div><div class='codemain'><!--ec1-->// Pass it to our print routine
$this->ipsclass->print->add_output( $this->output );
if($this->ipsclass->input['st'] == 0 || !isset($this->ipsclass->input['st']))
{
$this->mytitle = ' - Страница 1';
}
else
{
$pagenum = $this->ipsclass->input['st'] + $this->ipsclass->vars['display_max_posts'];
$pagenum2 = $pagenum / $this->ipsclass->vars['display_max_posts'];
$this->mytitle = ' - Страница '.$pagenum2;
}
$this->ipsclass->print->do_output( array( 'TITLE' => $this->topic['title'] . $this->mytitle . ' - ' . $this->ipsclass->vars['board_name'],
'JS' => $this->ipsclass->compiled_templates['skin_global']->get_rte_css(),
'NAV' => $this->nav,
)