Do not normalize openid url when logging in
(since it isn't normalized when setting it via user settings)
NOTE: this broke with 8367cad
This commit is contained in:
parent
c013ca9d36
commit
7fbb51adb9
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,8 @@ function openid_content(&$a) {
|
|||
|
||||
if($openid->validate()) {
|
||||
|
||||
$authid = normalise_openid($_REQUEST['openid_identity']);
|
||||
#$authid = normalise_openid($_REQUEST['openid_identity']);
|
||||
$authid = $_REQUEST['openid_identity'];
|
||||
|
||||
if(! strlen($authid)) {
|
||||
logger( t('OpenID protocol error. No ID returned.') . EOL);
|
||||
|
|
Loading…
Reference in a new issue