Global the variables...
PHP Code:
<?php
function test(){
global $phrasegroups, $specialtemplates, $globaltemplates, actiontemplates;
$phrasegroups = array('holiday');
$specialtemplates = array(
'userstats',
'birthdaycache',
'maxloggedin',
'iconcache',
'eventcache',
'mailqueue');
$globaltemplates = array(
'FORUMHOME',
'forumhome_event',
'forumhome_forumbit_level1_nopost',
'forumhome_forumbit_level1_post',
'forumhome_forumbit_level2_nopost',
'forumhome_forumbit_level2_post',
'forumhome_lastpostby',
'forumhome_loggedinuser',
'forumhome_moderator',
'forumhome_pmloggedin',
'forumhome_subforumbit_nopost',
'forumhome_subforumbit_post',
'forumhome_subforumseparator_nopost',
'forumhome_subforumseparator_post');
$actiontemplates = array();
chdir('/home/wa/public_html/forum');
require_once('./global.php');
chdir('/home/wa/public_html/common');
}
test();
?>