diff options
Diffstat (limited to 'main/php_variables.c')
-rw-r--r-- | main/php_variables.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/php_variables.c b/main/php_variables.c index fd586c6f89..6fde08f2c9 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -725,6 +725,7 @@ void php_startup_auto_globals(TSRMLS_D) zend_register_auto_global("_SERVER", sizeof("_SERVER")-1, cb?php_auto_globals_create_server:NULL TSRMLS_CC); zend_register_auto_global("_ENV", sizeof("_ENV")-1, cb?php_auto_globals_create_env:NULL TSRMLS_CC); zend_register_auto_global("_REQUEST", sizeof("_REQUEST")-1, cb?php_auto_globals_create_request:NULL TSRMLS_CC); + zend_register_auto_global("_FILES", sizeof("_FILES")-1, NULL TSRMLS_CC); } /* |