mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
we don't really need an extra method to set the script name
This commit is contained in:
parent
85903d1b08
commit
3c5bd78ddb
1 changed files with 1 additions and 5 deletions
|
@ -506,7 +506,7 @@ module ActionController
|
|||
@controller.request = @request
|
||||
@controller.response = @response
|
||||
|
||||
build_request_uri(controller_class_name, action, parameters)
|
||||
@request.env["SCRIPT_NAME"] ||= @controller.config.relative_url_root
|
||||
|
||||
@controller.recycle!
|
||||
@controller.process(action)
|
||||
|
@ -631,10 +631,6 @@ module ActionController
|
|||
end
|
||||
end
|
||||
|
||||
def build_request_uri(controller_class_name, action, parameters)
|
||||
@request.env["SCRIPT_NAME"] ||= @controller.config.relative_url_root
|
||||
end
|
||||
|
||||
def html_format?(parameters)
|
||||
return true unless parameters.key?(:format)
|
||||
Mime.fetch(parameters[:format]) { Mime['html'] }.html?
|
||||
|
|
Loading…
Reference in a new issue