Say you are creating a script that integrates with vBulletin.
The script: test.php
Inside of test.php (which is integrated and includes global.php) includes:
Code:
if($action == "blah")
{
echo ("hi");
}
Now, if you go to
http://url.com/forum/test.php?action=blah
It only sees test.php without the declartion of "action" being "blah." In the earlier version of VB, you could just add in "action" to the "allowedvars" in init.php and bam, that fixed the problem.
I am just trying to find out where on earth that went in 3.5.x