解决ie11下载乱码问题

This commit is contained in:
guange 2015-10-13 16:29:25 +08:00
parent e1c5c02c0d
commit 5b2fb66468
1 changed files with 1 additions and 1 deletions

View File

@ -756,7 +756,7 @@ class ApplicationController < ActionController::Base
# Returns a string that can be used as filename value in Content-Disposition header
def filename_for_content_disposition(name)
request.env['HTTP_USER_AGENT'] =~ %r{MSIE} ? ERB::Util.url_encode(name) : name
request.env['HTTP_USER_AGENT'] =~ %r{MSIE|Trident} ? ERB::Util.url_encode(name) : name
end
def api_request?