Topic: Change Title Separator

Where can I find the place to change the separator used in the title.

For example, right now the default title looks like this:

PunBB.org Forums / My Topic

I want to change it to:

PunBB.org Forums | My Topic

Could someone please direct me to the right file for making this switch.

Thanks!

Re: Change Title Separator

header.php
FIND

<title><?php echo $page_title ?></title>

REPLACE WITH

<title><?php echo str_replace('/', '|', $page_title) ?></title>

Re: Change Title Separator

Thanks Smartys!