From 29a344b38430718c9b26a86fd34e959cb355e154 Mon Sep 17 00:00:00 2001 From: Sterling Hughes Date: Mon, 28 Oct 2002 02:46:09 +0000 Subject: [PATCH] remove $_FILES from $_REQUEST as per php-dev conversation... --- main/main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/main/main.c b/main/main.c index 8b2a299645..d03e605518 100644 --- a/main/main.c +++ b/main/main.c @@ -1360,7 +1360,6 @@ static int php_hash_environment(TSRMLS_D) case 'p': case 'P': zend_hash_merge(Z_ARRVAL_P(form_variables), Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_POST]), (void (*)(void *pData)) zval_add_ref, NULL, sizeof(zval *), 1); - zend_hash_merge(Z_ARRVAL_P(form_variables), Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_FILES]), (void (*)(void *pData)) zval_add_ref, NULL, sizeof(zval *), 1); break; case 'c': case 'C': -- 2.50.1