I've just noticed that this is turned ON in my php.ini file. I'd like to turn it off for performance reasons but I'm wondering if WPMU needs it at all.
I've just noticed that this is turned ON in my php.ini file. I'd like to turn it off for performance reasons but I'm wondering if WPMU needs it at all.
I've done a code search for any use of the HTTP_GET_VARS and I didn't find any so I'm hoping its good news
Watch out; register_long_arrays
controls whether to register HTTP_GET_VARS
"and friends." (quoting my fresh php.ini from Ubuntu Hardy)
I grepped WordPress 2.8.1 and WordPress-Mu 2.8.1 and found one use of one of those friends (same place):
$ grep -r HTTP_POST_VARS web/
web/wp-trackback.php:$request_array = 'HTTP_POST_VARS';
That might explain why trackbacks stopped working!
I wonder if there is any plan to get rid of it?