git-svn-id: https://svn.redmine.org/redmine/branches/5.0-stable@22296
e93f8b46-1217-0410-a6f0-
8f06a7374b81
tbnail,
:filename => filename_for_content_disposition(@attachment.filename),
:type => detect_content_type(@attachment, true),
- :disposition => 'inline')
+ :disposition => 'attachment')
end
else
# No thumbnail for the attachment or thumbnail could not be created
request.raw_post
end
end
+
+ def send_file(path, options={})
+ headers['content-security-policy'] = "default-src 'none'; style-src 'unsafe-inline'; sandbox"
+ super
+ end
end
end
end
+ def send_file(path, options={})
+ headers['content-security-policy'] = "default-src 'none'; style-src 'unsafe-inline'; sandbox"
+ super
+ end
+
def valid_name?(rev)
return true if rev.nil?
return true if REV_PARAM_RE.match?(rev)