mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
MFH:- Improved the error message for exceeding max_input_nesting_level.
This commit is contained in:
parent
a8be5f419d
commit
f26145fa8c
2 changed files with 2 additions and 2 deletions
|
@ -138,7 +138,7 @@ PHPAPI void php_register_variable_ex(char *var, zval *val, zval *track_vars_arra
|
|||
zval_dtor(val);
|
||||
|
||||
if (!PG(display_errors)) {
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Input variable nesting level more than allowed %ld (change max_input_nesting_level in php.ini to increase the limit)", PG(max_input_nesting_level));
|
||||
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Input variable nesting level exceeded %ld. To increase the limit change max_input_nesting_level in php.ini.", PG(max_input_nesting_level));
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue