summaryrefslogtreecommitdiff
path: root/main/php_variables.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-05-03 11:24:29 +0000
committerDmitry Stogov <dmitry@php.net>2006-05-03 11:24:29 +0000
commitefad37874b34c43b5b61338521e9593973357297 (patch)
tree91a15b0d93f500e8983f92801c9dd3f84f5be1b2 /main/php_variables.c
parentdbf2a5c65c8f007d9875e52850d044dfc8015bc3 (diff)
downloadphp-git-efad37874b34c43b5b61338521e9593973357297.tar.gz
Fixed bug #37276 (problems witch $_POST array)
Diffstat (limited to 'main/php_variables.c')
-rw-r--r--main/php_variables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_variables.c b/main/php_variables.c
index 04fb6edb40..f1570e94dd 100644
--- a/main/php_variables.c
+++ b/main/php_variables.c
@@ -178,7 +178,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 {