reverting 88ed162dae
This commit is contained in:
+1
-2
@@ -242,8 +242,7 @@ class Request(Storage):
|
||||
# parse POST variables on POST, PUT, BOTH only in post_vars
|
||||
if body and not is_json and env.request_method in ('POST', 'PUT', 'DELETE', 'BOTH'):
|
||||
query_string = env.pop('QUERY_STRING', None)
|
||||
decoded_body = body if global_settings.is_py2 else body.decode()
|
||||
dpost = cgi.FieldStorage(fp=decoded_body, environ=env, keep_blank_values=1)
|
||||
dpost = cgi.FieldStorage(fp=body, environ=env, keep_blank_values=1)
|
||||
try:
|
||||
post_vars.update(dpost)
|
||||
except:
|
||||
|
||||
Reference in New Issue
Block a user