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:
root 2016-05-24 22:36:51 +02:00
parent c013ca9d36
commit 7fbb51adb9
1 changed files with 2 additions and 1 deletions

View File

@ -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);