summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-04-17 19:38:02 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2014-04-17 19:38:02 +0000
commit70bc3fd60187a82b645d5631e3f5e7caebd13f8e (patch)
treef32cf3dac2c37e4e2f368a260f10b652c318b390
parent3b91ec2246ed229d1c3f54e5ad0f6e5c8076ff90 (diff)
downloadredmine-70bc3fd60187a82b645d5631e3f5e7caebd13f8e.tar.gz
redmine-70bc3fd60187a82b645d5631e3f5e7caebd13f8e.zip
Merged r13101 from trunk to 2.4-stable (#16711)
fix non-ascii attachment file name get corrupted in IE11. Contributed by Go MAEDA. git-svn-id: http://svn.redmine.org/redmine/branches/2.4-stable@13103 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/controllers/application_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 8716aae39..beb8926a0 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -555,7 +555,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?