From f26145fa8c6a98a11081e9cf5029fa99f837bc92 Mon Sep 17 00:00:00 2001 From: foobar Date: Sun, 3 Jun 2007 16:54:06 +0000 Subject: MFH:- Improved the error message for exceeding max_input_nesting_level. --- main/php_variables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php_variables.c') diff --git a/main/php_variables.c b/main/php_variables.c index cd4db41a6e..4a7c615fd6 100644 --- a/main/php_variables.c +++ b/main/php_variables.c @@ -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; } -- cgit v1.2.1