]> source.dussan.org Git - redmine.git/commitdiff
Show a 404 error page if attachment can not be read.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 26 May 2007 16:57:25 +0000 (16:57 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 26 May 2007 16:57:25 +0000 (16:57 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@544 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/attachments_controller.rb

index 3528e72202e116739d7b478ca87e4dd1608b5be2..e0a02d8e8018107c34d44ead40fa31a1fa879581 100644 (file)
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 class AttachmentsController < ApplicationController
+  layout 'base'
   before_filter :find_project, :check_project_privacy
 
   # sends an attachment
   def download
     send_file @attachment.diskfile, :filename => @attachment.filename
+  rescue
+    render_404
   end
     
   # sends an image to be displayed inline
   def show
     render(:nothing => true, :status => 404) and return unless @attachment.diskfile =~ /\.(jpeg|jpg|gif|png)$/i
     send_file @attachment.diskfile, :type => "image/#{$1}", :disposition => 'inline'
+  rescue
+    render_404
   end
  
 private