diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-17 16:51:39 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-09-17 16:51:39 +0000 |
commit | 29413d6bee315990b1e7b8e40e28c5abd9d3fd21 (patch) | |
tree | a4b3fff6f164e66e30beef1fd6f44bfa9794c02b /app/models/attachment.rb | |
parent | fc64fc3e9c1004171c495e055dd482e364284d7b (diff) | |
download | redmine-29413d6bee315990b1e7b8e40e28c5abd9d3fd21.tar.gz redmine-29413d6bee315990b1e7b8e40e28c5abd9d3fd21.zip |
Fixed: error when uploading a file with a content type longer than 60 chars.
(Maximum size changed to 255. Mime type not saved if longer)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@739 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models/attachment.rb')
-rw-r--r-- | app/models/attachment.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/models/attachment.rb b/app/models/attachment.rb index f57038b96..4591a1109 100644 --- a/app/models/attachment.rb +++ b/app/models/attachment.rb @@ -61,6 +61,10 @@ class Attachment < ActiveRecord::Base end self.digest = Digest::MD5.hexdigest(File.read(diskfile)) end + # Don't save the content type if it's longer than the authorized length + if self.content_type && self.content_type.length > 255 + self.content_type = nil + end end # Deletes file on the disk |