stas Fri Mar 2 22:03:05 2007 UTC
Modified files: (Branch: PHP_5_2)
/php-src/main php_variables.c
Log:
fix variable name
http://cvs.php.net/viewvc.cgi/php-src/main/php_variables.c?r1=1.104.2.10.2.5&r2=1.104.2.10.2.6&diff_format=u
Index: php-src/main/php_variables.c
diff -u php-src/main/php_variables.c:1.104.2.10.2.5
php-src/main/php_variables.c:1.104.2.10.2.6
--- php-src/main/php_variables.c:1.104.2.10.2.5 Fri Mar 2 21:58:05 2007
+++ php-src/main/php_variables.c Fri Mar 2 22:03:05 2007
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_variables.c,v 1.104.2.10.2.5 2007/03/02 21:58:05 stas Exp $ */
+/* $Id: php_variables.c,v 1.104.2.10.2.6 2007/03/02 22:03:05 stas Exp $ */
#include <stdio.h>
#include "php.h"
@@ -124,7 +124,7 @@
char *index_s;
int new_idx_len = 0;
- if(++nest_level > PG(max_nesting_level)) {
+ if(++nest_level > PG(max_input_nesting_level)) {
/* too many levels of nesting */
php_error_docref(NULL TSRMLS_CC, E_ERROR,
"Input variable nesting level more than allowed %d (change
max_input_nesting_level in php.ini to increase the limit)",
PG(max_input_nesting_level));
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php