Browse Source

Stop at the index on an unmatched [

PHP-5.1
Rasmus Lerdorf 22 years ago
parent
commit
bb8167cda3
  1. 2
      main/php_variables.c

2
main/php_variables.c

@ -133,7 +133,7 @@ PHPAPI void php_register_variable_ex(char *var, zval *val, pval *track_vars_arra
if (!ip) {
/* PHP variables cannot contain '[' in their names, so we replace the character with a '_' */
*(index_s - 1) = '_';
index_len = var_len = strlen(var);
index_len = var_len = strlen(index);
goto plain_var;
return;
}

Loading…
Cancel
Save