I just took a look in global.php
Code:
$header='';
$footer='';
// parse PHP include ##################
eval(gettemplate('phpinclude',0,0));
// parse css, header & footer ##################
eval("\$headinclude = \"".gettemplate('headinclude')."\";");
eval("\$header .= \"".gettemplate('header')."\";");
eval("\$footer .= \"".gettemplate('footer')."\";");
// parse other global templates
eval("\$gobutton = \"".gettemplate('gobutton')."\";");
$timediff='';
if ($bbuserinfo['timezoneoffset']!=0) {
if (abs($bbuserinfo['timezoneoffset'])==1) {
$timediff=" $bbuserinfo[timezoneoffset] hour";
} else {
$timediff=" $bbuserinfo[timezoneoffset] hours";
}
}
$timenow=vbdate($timeformat,time());
eval("\$timezone = \"".gettemplate('timezone')."\";");
Im not sure if this will work, but you best bet to get those info into the header would be to copy and paste the code from index.php below
Code:
// parse css, header & footer ##################