|
|
Administrator
|
Posts: 1104
Join Date: Mar 2005
|
You can modify the $title variable before including forumheader.php. The page number is in the $p variable.
Example:
Code:
$saved_title = $title; //new line
$title .= ' page '.$p; //new line
require('forumheader.php'); //original code
$title = $saved_title; //new line
Just an example. It will display page 1, page 2 etc. in the title. There are many ways to mod it though.
|