Browse Source

Fixed bug #37276 (problems witch $_POST array)

PHP-5.1
Dmitry Stogov 21 years ago
parent
commit
efad37874b
  1. 1
      NEWS
  2. 2
      main/php_variables.c

1
NEWS

@ -5,6 +5,7 @@ PHP NEWS
for SSL streams. (Wez). for SSL streams. (Wez).
- Fixed possible crash in highlight_string(). (Dmitry) - Fixed possible crash in highlight_string(). (Dmitry)
- Fixed bug #37277 (cloning Dom Documents or Nodes does not work). (Rob) - Fixed bug #37277 (cloning Dom Documents or Nodes does not work). (Rob)
- Fixed bug #37276 (problems witch $_POST array). (Dmitry)
- Fixed bug #36632 (bad error reporting for pdo_odbc exec UPDATE). (Wez). - Fixed bug #36632 (bad error reporting for pdo_odbc exec UPDATE). (Wez).
- Fixed bug #35552 (crash when pdo_odbc prepare fails). (Wez). - Fixed bug #35552 (crash when pdo_odbc prepare fails). (Wez).

2
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; is_array = 1;
*ip = 0; *ip = 0;
} else { } else {
is_array = 0;
goto plain_var;
} }
} }
} else { } else {

Loading…
Cancel
Save