diff options
author | Dmitry Stogov <dmitry@php.net> | 2006-05-03 11:24:51 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2006-05-03 11:24:51 +0000 |
commit | 736b8d903bf916b2f0105058d25c0dc6c3f7b515 (patch) | |
tree | e65d12e0623eb837132af77cc48524b3cfaaacac /main/php_variables.c | |
parent | a91a72f800620f11762d0c691ba25be60d489a8e (diff) | |
download | php-git-736b8d903bf916b2f0105058d25c0dc6c3f7b515.tar.gz |
Fixed bug #37276 (problems witch $_POST array)
Diffstat (limited to 'main/php_variables.c')
-rw-r--r-- | main/php_variables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_variables.c b/main/php_variables.c index 5363134ad0..5ebf168174 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -177,7 +177,7 @@ PHPAPI void php_register_variable_ex(char *var, zval *val, zval *track_vars_arra is_array = 1; *ip = 0; } else { - is_array = 0; + goto plain_var; } } } else { |