aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb')
-rw-r--r--actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb b/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb
index 706654e52b..ce6722f3a4 100644
--- a/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb
+++ b/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb
@@ -13,10 +13,12 @@ class CGI #:nodoc:
@multipart = false
@params = CGI::parse(read_query_params)
end
+
+ @cookies = CGI::Cookie::parse((env_table['HTTP_COOKIE'] or env_table['COOKIE']))
end
private
- MULTIPART_FORM_BOUNDARY_RE = %r|\Amultipart/form-data.*boundary=\"?([^\";,]+)\"?|n
+ MULTIPART_FORM_BOUNDARY_RE = %r|\Amultipart/form-data.*boundary=\"?([^\";,]+)\"?|n #"
def multipart_form_boundary
if env_table['REQUEST_METHOD'] == 'POST'
@@ -27,7 +29,7 @@ class CGI #:nodoc:
def read_query_params
case env_table['REQUEST_METHOD']
when 'GET', 'HEAD'
- if defined? MOD_RUBY
+ if defined? MOD_RUBY
Apache::request.args or ''
else
env_table['QUERY_STRING'] or ''
@@ -41,4 +43,4 @@ class CGI #:nodoc:
end
end
end # module QueryExtension
-end \ No newline at end of file
+end