I would assume this has already been addressed at some point, but I'm not certain how to/limit/what to search for.
When 6.0 is released, one of the primary changes I noticed was the removal of $HTTP_GET_VARS and the like.
When I come across these during maintenance, I change them to $_GET and its counterparts.
My question: is doing something like the following catchall, going to prevent an entire overhaul if I don't get a chance to update *every* instance before the 6.0 release?
$_GET = $HTTP_GET_VARS; (for example)