catch OpenID login errors in cases when the OpenID server does not answers

This commit is contained in:
Tobias Diekershoff 2012-03-30 15:19:17 +02:00
parent 5b4bb347a6
commit 17c908973f
1 changed files with 5 additions and 1 deletions

View File

@ -94,13 +94,17 @@ else {
// Otherwise it's probably an openid.
try {
require_once('library/openid.php');
$openid = new LightOpenID;
$openid->identity = $openid_url;
$_SESSION['openid'] = $openid_url;
$a = get_app();
$openid->returnUrl = $a->get_baseurl(true) . '/openid';
goaway($openid->authUrl());
goaway($openid->authUrl());
} catch (Exception $e) {
notice( t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.').'<br /><br >'. t('The error message was:').' '.$e->getMessage());
}
// NOTREACHED
}
}