mirror of
https://github.com/github/rails.git
synced 2026-02-18 18:05:07 -05:00
Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [bitsweat]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@463 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
*SVN*
|
||||
|
||||
* Added @request.env['RAW_POST_DATA'] for people who need access to the data before Ruby's CGI has parsed it #505 [bitsweat]
|
||||
|
||||
* Fixed that a default fragment store wan't being set to MemoryStore as intended.
|
||||
|
||||
* Fixed that all redirect and render calls now return true, so you can use the pattern of "do and return". Example:
|
||||
|
||||
@@ -41,6 +41,7 @@ files = %w-
|
||||
action_controller/cgi_ext/cgi_ext.rb
|
||||
action_controller/cgi_ext/cgi_methods.rb
|
||||
action_controller/cgi_ext/cookie_performance_fix.rb
|
||||
action_controller/cgi_ext/raw_post_data_fix.rb
|
||||
action_controller/caching.rb
|
||||
action_controller/cgi_process.rb
|
||||
action_controller/cookies.rb
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
require 'action_controller/cgi_ext/cgi_ext'
|
||||
require 'action_controller/cgi_ext/cookie_performance_fix'
|
||||
require 'action_controller/cgi_ext/raw_post_data_fix'
|
||||
require 'action_controller/session/drb_store'
|
||||
require 'action_controller/session/active_record_store'
|
||||
require 'action_controller/session/mem_cache_store'
|
||||
|
||||
Reference in New Issue
Block a user