Skip to content

Commit bbf45e1

Browse files
committed
Alphabetic order
1 parent 27c6ee5 commit bbf45e1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ext/standard/html.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1612,9 +1612,9 @@ static zend_result cache_request_parse_body_options(HashTable *options)
16121612
switch (ZSTR_VAL(key)[0]) {
16131613
case 'm':
16141614
case 'M':
1615-
CHECK_OPTION(max_multipart_body_parts);
16161615
CHECK_OPTION(max_file_uploads);
16171616
CHECK_OPTION(max_input_vars);
1617+
CHECK_OPTION(max_multipart_body_parts);
16181618
break;
16191619
case 'p':
16201620
case 'P':

main/SAPI.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ typedef struct {
118118
} sapi_request_parse_body_context;
119119

120120
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,
124122
REQUEST_PARSE_BODY_OPTION_max_input_vars,
123+
REQUEST_PARSE_BODY_OPTION_max_multipart_body_parts,
124+
REQUEST_PARSE_BODY_OPTION_post_max_size,
125125
REQUEST_PARSE_BODY_OPTION_upload_max_filesize,
126126
} request_parse_body_option;
127127

0 commit comments

Comments
 (0)