summaryrefslogtreecommitdiff
path: root/main/php_variables.c
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2006-05-03 11:24:51 +0000
committerDmitry Stogov <dmitry@php.net>2006-05-03 11:24:51 +0000
commit736b8d903bf916b2f0105058d25c0dc6c3f7b515 (patch)
treee65d12e0623eb837132af77cc48524b3cfaaacac /main/php_variables.c
parenta91a72f800620f11762d0c691ba25be60d489a8e (diff)
downloadphp-git-736b8d903bf916b2f0105058d25c0dc6c3f7b515.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 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 {