diff options
author | Michael Koziarski <michael@koziarski.com> | 2008-11-06 18:52:02 +0000 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2008-11-06 18:52:02 +0000 |
commit | af5b304a4002fe8ebeb8f31cd0a481dfa4a944db (patch) | |
tree | 5fc288ad632de468aa3f3dee6eaba50e5c616abf /actionpack | |
parent | 732c724df61bc8b780dc42817625b25a321908e4 (diff) | |
download | rails-af5b304a4002fe8ebeb8f31cd0a481dfa4a944db.tar.gz rails-af5b304a4002fe8ebeb8f31cd0a481dfa4a944db.tar.bz2 rails-af5b304a4002fe8ebeb8f31cd0a481dfa4a944db.zip |
Fix stupid typo
Diffstat (limited to 'actionpack')
-rwxr-xr-x | actionpack/lib/action_controller/request.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/request.rb b/actionpack/lib/action_controller/request.rb index a6d4abf029..c079895683 100755 --- a/actionpack/lib/action_controller/request.rb +++ b/actionpack/lib/action_controller/request.rb @@ -13,7 +13,7 @@ module ActionController ActiveSupport::Deprecation.warn( "ActionController::AbstractRequest.relative_url_root= has been renamed." + "You can now set it with config.action_controller.relative_url_root=", caller) - ActionController::base.relative_url_root=relative_url_root + ActionController::Base.relative_url_root=relative_url_root end HTTP_METHODS = %w(get head put post delete options) |