summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2015-09-12 10:51:25 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2015-09-12 10:51:25 +0000
commit1dbb2562934fa5ead26c1a511e1746d11384da9d (patch)
treed242f5e944513a921b3bf9e2b66d305f3791e663 /app
parent672f0e4195581302ffe95663230ad657d519c18b (diff)
downloadredmine-1dbb2562934fa5ead26c1a511e1746d11384da9d.tar.gz
redmine-1dbb2562934fa5ead26c1a511e1746d11384da9d.zip
Merged r14473 (#20278).
git-svn-id: http://svn.redmine.org/redmine/branches/3.1-stable@14543 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/models/attachment.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/attachment.rb b/app/models/attachment.rb
index 8e3d578e5..d1d7c6dd0 100644
--- a/app/models/attachment.rb
+++ b/app/models/attachment.rb
@@ -294,7 +294,7 @@ class Attachment < ActiveRecord::Base
def self.latest_attach(attachments, filename)
attachments.sort_by(&:created_on).reverse.detect do |att|
- att.filename.downcase == filename.downcase
+ filename.casecmp(att.filename) == 0
end
end