File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1612,9 +1612,9 @@ static zend_result cache_request_parse_body_options(HashTable *options)
1612
1612
switch (ZSTR_VAL (key )[0 ]) {
1613
1613
case 'm' :
1614
1614
case 'M' :
1615
- CHECK_OPTION (max_multipart_body_parts );
1616
1615
CHECK_OPTION (max_file_uploads );
1617
1616
CHECK_OPTION (max_input_vars );
1617
+ CHECK_OPTION (max_multipart_body_parts );
1618
1618
break ;
1619
1619
case 'p' :
1620
1620
case 'P' :
Original file line number Diff line number Diff line change @@ -118,10 +118,10 @@ typedef struct {
118
118
} sapi_request_parse_body_context ;
119
119
120
120
typedef enum {
121
- REQUEST_PARSE_BODY_OPTION_post_max_size = 0 ,
122
- REQUEST_PARSE_BODY_OPTION_max_multipart_body_parts ,
123
- REQUEST_PARSE_BODY_OPTION_max_file_uploads ,
121
+ REQUEST_PARSE_BODY_OPTION_max_file_uploads = 0 ,
124
122
REQUEST_PARSE_BODY_OPTION_max_input_vars ,
123
+ REQUEST_PARSE_BODY_OPTION_max_multipart_body_parts ,
124
+ REQUEST_PARSE_BODY_OPTION_post_max_size ,
125
125
REQUEST_PARSE_BODY_OPTION_upload_max_filesize ,
126
126
} request_parse_body_option ;
127
127
You can’t perform that action at this time.
0 commit comments