Merge branch 'funkensturm/master' into spree-1.0

* funkensturm/master:
  Ruby 1.9.3 compatibility fix
This commit is contained in:
Michael Bianco
2012-04-11 16:26:58 -04:00

View File

@@ -8,11 +8,11 @@ module Spree
if link.present? and link.digital.attachment.present?
attachment = link.digital.attachment
if link.authorize! and File.file?(attachment.path)
send_file attachment.path :filename => attachment.original_filename, :type => attachment.content_type and return
send_file attachment.path, :filename => attachment.original_filename, :type => attachment.content_type and return
end
end
render :unauthorized
end
end
end
end