aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-05-07 19:28:16 +0200
committerYves Senn <yves.senn@gmail.com>2014-05-07 19:28:16 +0200
commit37c1e47da09fba4ee76143da05bbd4faabbaa53e (patch)
tree2736027dcaa2b9877c9adf6d0d01c28ee3bdf3cd /actionpack/lib
parent37d4415a7b433fcb987b1c6a5b51bf2d8efc5d5e (diff)
parentca97ec509955d70bde47d337e5086920f0c79b63 (diff)
downloadrails-37c1e47da09fba4ee76143da05bbd4faabbaa53e.tar.gz
rails-37c1e47da09fba4ee76143da05bbd4faabbaa53e.tar.bz2
rails-37c1e47da09fba4ee76143da05bbd4faabbaa53e.zip
Merge pull request #15012 from schneems/schneems/headers-key
HTTP::Headers#key? correctly converts
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_dispatch/http/headers.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/http/headers.rb b/actionpack/lib/action_dispatch/http/headers.rb
index 2666cd4b0a..788eed8b89 100644
--- a/actionpack/lib/action_dispatch/http/headers.rb
+++ b/actionpack/lib/action_dispatch/http/headers.rb
@@ -26,7 +26,9 @@ module ActionDispatch
@env[env_name(key)] = value
end
- def key?(key); @env.key? key; end
+ def key?(key)
+ @env.key? env_name(key)
+ end
alias :include? :key?
def fetch(key, *args, &block)