diff options
| author | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-05-21 14:22:07 -0700 | 
|---|---|---|
| committer | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-05-21 14:34:56 -0700 | 
| commit | e693f45e155a81b6c337b8766870b56716a05105 (patch) | |
| tree | 176d94bdc8aa6e072666f1a1ef9383ff809a18df /actionpack/lib/action_dispatch | |
| parent | 386ff66e5ed4fbe1e060610d4226a4eb22dca766 (diff) | |
| download | rails-e693f45e155a81b6c337b8766870b56716a05105.tar.gz rails-e693f45e155a81b6c337b8766870b56716a05105.tar.bz2 rails-e693f45e155a81b6c337b8766870b56716a05105.zip | |
Remove some response content type concepts from ActionView
Diffstat (limited to 'actionpack/lib/action_dispatch')
| -rw-r--r-- | actionpack/lib/action_dispatch/http/mime_type.rb | 2 | ||||
| -rwxr-xr-x | actionpack/lib/action_dispatch/http/request.rb | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/actionpack/lib/action_dispatch/http/mime_type.rb b/actionpack/lib/action_dispatch/http/mime_type.rb index dfcf3a558f..25156a4c75 100644 --- a/actionpack/lib/action_dispatch/http/mime_type.rb +++ b/actionpack/lib/action_dispatch/http/mime_type.rb @@ -3,7 +3,7 @@ require 'active_support/core_ext/class/attribute_accessors'  module Mime    SET              = [] -  EXTENSION_LOOKUP = Hash.new { |h, k| h[k] = Type.new(k) unless k.blank? } +  EXTENSION_LOOKUP = {}    LOOKUP           = Hash.new { |h, k| h[k] = Type.new(k) unless k.blank? }    def self.[](type) diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb index 13ff049a97..4831b89bde 100755 --- a/actionpack/lib/action_dispatch/http/request.rb +++ b/actionpack/lib/action_dispatch/http/request.rb @@ -175,7 +175,7 @@ module ActionDispatch        if ActionController::Base.use_accept_header          Array(Mime[parameters[:format]] || accepts)        else -        [format] +        [format, Mime[:all]]        end      end | 
