diff options
author | Sterling Hughes <sterling@php.net> | 2002-10-28 02:46:09 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2002-10-28 02:46:09 +0000 |
commit | 29a344b38430718c9b26a86fd34e959cb355e154 (patch) | |
tree | ca1db1c6fc1c8ce252eeb293198149f6e88027e3 | |
parent | af52de3430badec61b4cdec3c3173697a58d9e40 (diff) | |
download | php-git-29a344b38430718c9b26a86fd34e959cb355e154.tar.gz |
remove $_FILES from $_REQUEST as per php-dev conversation...
-rw-r--r-- | main/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
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': |