adding it to global.php is the same story.
Code:
// Top of global.php, load a vb-page...
$brand_new_var = $_GET;
print_r($brand_new_var);
// Works!
Code:
// Top of header.php called from showpost.php
print_r($brand_new_var);
// Nothing
// then..
print_r($_GET);
// you get a empty array here...
Code:
// Top of header.php called from myownpage.php
print_r($brand_new_var);
// Nothing, of coarse ;)
// then..
print_r($_GET);
// works fine