MFH:- Improved the error message for exceeding max_input_nesting_level.

This commit is contained in:
foobar 2007-06-03 16:54:06 +00:00
parent a8be5f419d
commit f26145fa8c
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}