Change the line
PHP Code:
$navbits = construct_navbits(array('' => $vbphrase['show_groups']));
, to:
PHP Code:
$navbits = construct_navbits(array('' => 'My freaking cool Page Title'));
--------------- Added [DATE]1344250391[/DATE] at [TIME]1344250391[/TIME] ---------------
Oh, oh, that might be quicknav, now that I think about it. X3
You'd wanna alter this instead:
PHP Code:
$navpopup = array(
'id' => 'showgroups_navpopup',
'title' => $vbphrase['show_groups'],
'link' => 'showgroups.php' . $vbulletin->session->vars['sessionurl_q'],
);
construct_quick_nav($navpopup);
Probably to something like this:
PHP Code:
$navpopup = array(
'id' => THIS_SCRIPT.'_navpopup',
'title' => 'My Freaking Cool page Title',
'link' => THIS_SCRIPT.'.php' . $vbulletin->session->vars['sessionurl_q'],
);
construct_quick_nav($navpopup);
But tbh, I'm not really sure atm. X3 Try one or the other or both. I think the first example I gave just changes the actual title shown in the browser's Title Bar.