Browse Source

Fix that AttachmentsController#show don't close the file after reading.

git-svn-id: http://svn.redmine.org/redmine/trunk@15289 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/3.3.0
Jean-Philippe Lang 8 years ago
parent
commit
3e1d2c0924
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      app/controllers/attachments_controller.rb

+ 2
- 2
app/controllers/attachments_controller.rb View File

@@ -28,7 +28,7 @@ class AttachmentsController < ApplicationController
respond_to do |format|
format.html {
if @attachment.is_diff?
@diff = File.new(@attachment.diskfile, "rb").read
@diff = File.read(@attachment.diskfile, :mode => "rb")
@diff_type = params[:type] || User.current.pref[:diff_type] || 'inline'
@diff_type = 'inline' unless %w(inline sbs).include?(@diff_type)
# Save diff type as user preference
@@ -38,7 +38,7 @@ class AttachmentsController < ApplicationController
end
render :action => 'diff'
elsif @attachment.is_text? && @attachment.filesize <= Setting.file_max_size_displayed.to_i.kilobyte
@content = File.new(@attachment.diskfile, "rb").read
@content = File.read(@attachment.diskfile, :mode => "rb")
render :action => 'file'
else
download

Loading…
Cancel
Save