1 (edited by qie 2007-06-12 06:32)

Topic: how to change the squence of the title

change " Punbb.org Forums / Post new topic
to
"Post new topic / Punbb.org Forums


the question i ever asked but now it's experiation with the new version.
sad

Re: how to change the squence of the title

I used this block of code in header.php to switch the title around

<title><?php // reversed title order
if ($page_title != $pun_config['o_board_title'])
{
    $page_title = substr($page_title, strlen($pun_config['o_board_title']) + 3).' - '.$pun_config['o_board_title'];
    echo $page_title;
}
else
    echo $page_title;
?></title>
Looking for a certain modification for your forum? Please take a look here before posting.

3

Re: how to change the squence of the title

thanks! solved.~~:)
maybe that didn't experiation ,as it's my idle can 't know that.