If register_globals is on, turn it off. Function will not unset values for $_GET, $_POST, $_COOKIE, $_REQUEST, $_SERVER, $_ENV, $_FILES, and $table_prefix. It is called once in core, in wp-settings.php
Note: this will also disable PHP sessions if register_globals was on.
<?php wp_unregister_GLOBALS() ?>
Does not accept any parameters.
Does not return a value.
wp_unregister_GLOBALS() is located in wp-includes/load.php
.