mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
Put it in the wrong case...
This commit is contained in:
parent
6fdf6b4c82
commit
c31ba75577
@ -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':
|
||||
|
Loading…
Reference in New Issue
Block a user