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, escaped_index, index_len+1, (void**) &gpc_element_p) ==FAILURE
198
198
||Z_TYPE_PP(gpc_element_p) !=IS_ARRAY) {
199
-
if (zend_hash_num_elements(symtable1) <= PG(max_input_vars)) {
200
-
if (zend_hash_num_elements(symtable1) ==PG(max_input_vars)) {
201
-
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)) {
259
-
if (zend_hash_num_elements(symtable1) ==PG(max_input_vars)) {
260
-
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 */
290
272
unsigned intval_len, new_val_len;
291
273
274
+
if (++count>PG(max_input_vars)) {
275
+
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));
if (SG(post_max_size) >0&&SG(request_info).content_length>SG(post_max_size)) {
784
785
sapi_module.sapi_error(E_WARNING, "POST Content-Length of %ld bytes exceeds the limit of %ld bytes", SG(request_info).content_length, SG(post_max_size));
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