Restore PDF opening function

This commit is contained in:
chiu 2026-06-03 05:29:06 +00:00
parent efc18045d8
commit db0ea6c621
1 changed files with 4 additions and 3 deletions

View File

@ -655,8 +655,9 @@ class AnnouncementsController < ApplicationController
@filename = @path.split("/").last
@ext = @path.split("/").last.to_s.split(".").last
# if @ext == "png" || @ext == "jpg" || @ext == "bmp" || @ext == "pdf"
# render "archives/download_file.html",:layout=>false
# else
if @ext == "pdf"
render "archives/download_file.html",:layout=>false
else
if (current_site.accessibility_mode rescue false)
render "archives/redirect_to_file.html",:layout=>false
return
@ -666,7 +667,7 @@ class AnnouncementsController < ApplicationController
send_file(@path, :type=>"application/octet-stream", :filename => @escaped_file_name, :x_sendfile=> true)
return
end
# end
end
else
render :file => "#{Rails.root}/app/views/errors/403.html", :layout => false, :status => :not_found, :content_type => 'text/html'
return