diff options
Diffstat (limited to 'server/util.c')
| -rw-r--r-- | server/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/util.c b/server/util.c index 177f3780..75e91a7b 100644 --- a/server/util.c +++ b/server/util.c @@ -2393,7 +2393,7 @@ AP_DECLARE(int) ap_parse_form_data(request_rec *r, ap_filter_t *f, /* sanity check - we only support forms for now */ ct = apr_table_get(r->headers_in, "Content-Type"); - if (!ct || strcmp("application/x-www-form-urlencoded", ct)) { + if (!ct || strncasecmp("application/x-www-form-urlencoded", ct, 33)) { return ap_discard_request_body(r); } |
