OSDN Git Service

Attachment content-type is now chomped before being saved.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 12 Aug 2007 14:32:07 +0000 (14:32 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 12 Aug 2007 14:32:07 +0000 (14:32 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@617 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/attachment.rb

index b1a7c52..108baf9 100644 (file)
@@ -38,7 +38,7 @@ class Attachment < ActiveRecord::Base
                        if @temp_file.size > 0
                                self.filename = sanitize_filename(@temp_file.original_filename)
                                self.disk_filename = DateTime.now.strftime("%y%m%d%H%M%S") + "_" + self.filename
-                               self.content_type = @temp_file.content_type
+                               self.content_type = @temp_file.content_type.chomp
                                self.filesize = @temp_file.size
                        end
                end