diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-07 16:27:32 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2015-08-07 16:27:32 -0700 |
commit | 05934d24aff62d66fc62621aa38dae6456e276be (patch) | |
tree | 023e885bacfa80c9c3fb2a305c0d396bb9c83fcc /actionpack/lib/action_dispatch/http | |
parent | 869b007172af30fdaac012467424750cde65da23 (diff) | |
download | rails-05934d24aff62d66fc62621aa38dae6456e276be.tar.gz rails-05934d24aff62d66fc62621aa38dae6456e276be.tar.bz2 rails-05934d24aff62d66fc62621aa38dae6456e276be.zip |
deprecate the env method on controller instances
people should be accessing request information through the request
object, not via the env hash. If they really really want at the env
hash, then they can get it off the request.
Diffstat (limited to 'actionpack/lib/action_dispatch/http')
-rw-r--r-- | actionpack/lib/action_dispatch/http/request.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb index c5b07e717f..de28cd0998 100644 --- a/actionpack/lib/action_dispatch/http/request.rb +++ b/actionpack/lib/action_dispatch/http/request.rb @@ -35,7 +35,7 @@ module ActionDispatch HTTP_ACCEPT HTTP_ACCEPT_CHARSET HTTP_ACCEPT_ENCODING HTTP_ACCEPT_LANGUAGE HTTP_CACHE_CONTROL HTTP_FROM HTTP_NEGOTIATE HTTP_PRAGMA HTTP_CLIENT_IP - HTTP_X_FORWARDED_FOR + HTTP_X_FORWARDED_FOR HTTP_VERSION ].freeze ENV_METHODS.each do |env| |