And a fix from Ari Stern.
This commit is contained in:
Jacques Distler 2009-06-17 21:12:58 -05:00
parent 73120cdc1c
commit 5acfc45aed

View file

@ -7,8 +7,8 @@ class FileController < ApplicationController
layout 'default' layout 'default'
before_filter :dnsbl_check before_filter :dnsbl_check, :check_authorized
before_filter :check_allow_uploads, :except => :file before_filter :check_allow_uploads, :except => [:file, :blahtex_png]
def file def file
@file_name = params['id'] @file_name = params['id']
@ -28,7 +28,7 @@ class FileController < ApplicationController
# no form supplied, this is a request to download the file # no form supplied, this is a request to download the file
file = @web.files_path + '/' + @file_name file = @web.files_path + '/' + @file_name
if File.exists?(file) if File.exists?(file)
send_file(file) if check_authorized send_file(file)
else else
return unless check_allow_uploads return unless check_allow_uploads
@file = WikiFile.new(:file_name => @file_name) @file = WikiFile.new(:file_name => @file_name)
@ -38,7 +38,7 @@ class FileController < ApplicationController
end end
def blahtex_png def blahtex_png
send_file(@web.blahtex_pngs_path + '/' + params['id']) if check_authorized send_file(@web.blahtex_pngs_path + '/' + params['id'])
end end
def delete def delete