openstreetmap-website/vendor/plugins/http_accept_language/init.rb

9 lines
395 B
Ruby

if defined?(ActionDispatch::Request)
ActionDispatch::Request.send :include, HttpAcceptLanguage
elsif defined?(ActionController::Request)
ActionController::Request.send :include, HttpAcceptLanguage
elsif defined?(ActionController::AbstractRequest)
ActionController::AbstractRequest.send :include, HttpAcceptLanguage
else
ActionController::CgiRequest.send :include, HttpAcceptLanguage
end