Edit for Accessibility.
This commit is contained in:
parent
8fafa6ec13
commit
fc0710da10
|
@ -507,7 +507,11 @@ class AnnouncementsController < ApplicationController
|
|||
if @ext == "png" || @ext == "jpg" || @ext == "bmp" || @ext == "pdf"
|
||||
render "archives/download_file.html",:layout=>false
|
||||
else
|
||||
send_file(@path)
|
||||
if (current_site.accessibility_mode rescue false)
|
||||
render "redirect_to_file",:layout=>false
|
||||
else
|
||||
send_file(@path)
|
||||
end
|
||||
end
|
||||
else
|
||||
render :file => "#{Rails.root}/app/views/errors/403.html", :layout => false, :status => :not_found, :content_type => 'text/html'
|
||||
|
|
Loading…
Reference in New Issue