
I cant seem to figure out why this code...
<?php
$curdir = getcwd ();
chdir('/path/to/your/forums');
require_once('/path/to/your/forums/global.php');
chdir ($curdir);
?>
that is at the top of my page, to interfer with my php navigation. They both work but not together, and if i remove the line...
require_once('/path/to/your/forums/global.php');
my navigation works correctly again, but i looked at global.php and cant seem to find whats causing this and check the init.php since its being called within global.php and still dont cant seem to figure this out

can someone point me in the right direction.
Thanks,