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
This commit is contained in:
parent
fc64fc3e9c
commit
29413d6bee
|
@ -61,6 +61,10 @@ class Attachment < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
self.digest = Digest::MD5.hexdigest(File.read(diskfile))
|
self.digest = Digest::MD5.hexdigest(File.read(diskfile))
|
||||||
end
|
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
|
end
|
||||||
|
|
||||||
# Deletes file on the disk
|
# Deletes file on the disk
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
class ChangeAttachmentsContentTypeLimit < ActiveRecord::Migration
|
||||||
|
def self.up
|
||||||
|
change_column :attachments, :content_type, :string
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.down
|
||||||
|
change_column :attachments, :content_type, :string, :limit => 60
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue