diff options
author | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-09-17 12:12:26 -0700 |
---|---|---|
committer | Jennifer Hodgdon <yahgrp@poplarware.com> | 2012-09-17 12:12:26 -0700 |
commit | 409db6b29916ee8099b5165d327c538c488967f6 (patch) | |
tree | 42527ba496eeffa5b0ab2a14242406dca4df1839 /modules/openid | |
parent | 8281aa22df7579718f8ea0a0a64345de0cd78430 (diff) | |
download | brdo-409db6b29916ee8099b5165d327c538c488967f6.tar.gz brdo-409db6b29916ee8099b5165d327c538c488967f6.tar.bz2 |
Issue #1742958 by DamienMcKenna: Fix capitalization of URL and other acronyms
Diffstat (limited to 'modules/openid')
-rw-r--r-- | modules/openid/openid.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/openid/openid.inc b/modules/openid/openid.inc index 9b793d368..bf9318ade 100644 --- a/modules/openid/openid.inc +++ b/modules/openid/openid.inc @@ -835,7 +835,7 @@ function _openid_invalid_openid_transition($identity, $response) { $fallback_account = user_external_load($fallback_identity); } - // Try to replace https with http. OpenID providers often redirect + // Try to replace HTTPS with HTTP. OpenID providers often redirect // from http to https, but Drupal didn't follow the redirect. if (!$fallback_account && strpos($fallback_identity, 'https://') !== FALSE) { $fallback_identity = str_replace('https://', 'http://', $fallback_identity); |