diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-03-04 17:37:28 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-03-04 17:37:28 +0000 |
commit | 608d6683da9b7eea8d3a4ad08acbd2933fb18cb5 (patch) | |
tree | 3c350eae4420fc80c204196785d4297392437ae3 /vendor | |
parent | 0d86bbf3ada73874b79f88181aacd008075d9d0b (diff) | |
download | redmine-608d6683da9b7eea8d3a4ad08acbd2933fb18cb5.tar.gz redmine-608d6683da9b7eea8d3a4ad08acbd2933fb18cb5.zip |
Fixed broken OpenID authentication after migration to Rails 2.2 (#2894).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2551 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'vendor')
-rw-r--r-- | vendor/plugins/open_id_authentication/lib/open_id_authentication.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/plugins/open_id_authentication/lib/open_id_authentication.rb b/vendor/plugins/open_id_authentication/lib/open_id_authentication.rb index 54a38acc1..22481136e 100644 --- a/vendor/plugins/open_id_authentication/lib/open_id_authentication.rb +++ b/vendor/plugins/open_id_authentication/lib/open_id_authentication.rb @@ -222,7 +222,7 @@ module OpenIdAuthentication relative_url_root = self.class.respond_to?(:relative_url_root) ? self.class.relative_url_root.to_s : request.relative_url_root - "#{request.protocol}#{request.host_with_port}#{ActionController::AbstractRequest.relative_url_root}#{request.path}" + "#{request.protocol}#{request.host_with_port}#{relative_url_root}#{request.path}" end def timeout_protection_from_identity_server |