diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-04-25 17:17:49 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-04-25 17:17:49 +0000 |
commit | 5e57a1a9d9478162ac4f27ae96b2ccaf55a1aba7 (patch) | |
tree | 93e57765139714bd82dede475725516c448c0d55 /lib/redmine/utils.rb | |
parent | 34e20c4373b7f5a20ab3a132feae3f70f21ec477 (diff) | |
download | redmine-5e57a1a9d9478162ac4f27ae96b2ccaf55a1aba7.tar.gz redmine-5e57a1a9d9478162ac4f27ae96b2ccaf55a1aba7.zip |
Merged rails-3.2 branch.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9528 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/utils.rb')
-rw-r--r-- | lib/redmine/utils.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/redmine/utils.rb b/lib/redmine/utils.rb index 96580168f..b04bbaa47 100644 --- a/lib/redmine/utils.rb +++ b/lib/redmine/utils.rb @@ -22,7 +22,7 @@ module Redmine def relative_url_root ActionController::Base.respond_to?('relative_url_root') ? ActionController::Base.relative_url_root.to_s : - ActionController::AbstractRequest.relative_url_root.to_s + ActionController::Base.config.relative_url_root.to_s end # Sets the relative root url of the application @@ -30,7 +30,7 @@ module Redmine if ActionController::Base.respond_to?('relative_url_root=') ActionController::Base.relative_url_root=arg else - ActionController::AbstractRequest.relative_url_root=arg + ActionController::Base.config.relative_url_root = arg end end @@ -38,7 +38,7 @@ module Redmine # Example: # random_hex(4) # => "89b8c729" def random_hex(n) - ActiveSupport::SecureRandom.hex(n) + SecureRandom.hex(n) end end end |