summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-08-08 19:15:38 +0000
committerZeev Suraski <zeev@php.net>2001-08-08 19:15:38 +0000
commitc31ba75577d3a7f20f61d9f74ce6f15e336607ed (patch)
treef63a8a95eaf355e5eb6bab41e895418a028863e0 /main
parent6fdf6b4c82d2c752ce11f8e5441428e960f338eb (diff)
downloadphp-git-c31ba75577d3a7f20f61d9f74ce6f15e336607ed.tar.gz
Put it in the wrong case...
Diffstat (limited to 'main')
-rw-r--r--main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c
index 0904037ba1..7b3252ce7e 100644
--- a/main/main.c
+++ b/main/main.c
@@ -1147,11 +1147,11 @@ static int php_hash_environment(TSRMLS_D)
case 'g':
case 'G':
zend_hash_merge(Z_ARRVAL_P(form_variables), Z_ARRVAL_P(PG(http_globals)[TRACK_VARS_GET]), (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 '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':