You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (zend_symtable_find(symtable1, index, index_len+1, (void**) &gpc_element_p) ==FAILURE
185
185
||Z_TYPE_PP(gpc_element_p) !=IS_ARRAY) {
186
-
if (zend_hash_num_elements(symtable1) <= PG(max_input_vars)) {
187
-
if (zend_hash_num_elements(symtable1) ==PG(max_input_vars)) {
188
-
php_error_docref(NULLTSRMLS_CC, E_WARNING, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
if (zend_hash_num_elements(symtable1) <= PG(max_input_vars)) {
235
-
if (zend_hash_num_elements(symtable1) ==PG(max_input_vars)) {
236
-
php_error_docref(NULLTSRMLS_CC, E_WARNING, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
if ((val=memchr(s, '=', (p-s)))) { /* have a value */
263
248
unsigned intval_len, new_val_len;
264
249
250
+
if (++count>PG(max_input_vars)) {
251
+
php_error_docref(NULLTSRMLS_CC, E_WARNING, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
php_error_docref(NULLTSRMLS_CC, E_WARNING, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
php_error_docref(NULLTSRMLS_CC, E_WARNING, "Input variables exceeded %ld. To increase the limit change max_input_vars in php.ini.", PG(max_input_vars));
0 commit comments