From: Tobias Diekershoff Date: Fri, 30 Mar 2012 13:19:17 +0000 (+0200) Subject: catch OpenID login errors in cases when the OpenID server does not answers X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=17c908973fc3574eb2d190f3d401e39823b4bb14;p=friendica.git catch OpenID login errors in cases when the OpenID server does not answers --- diff --git a/include/auth.php b/include/auth.php index 835616a829..1341f3bb8a 100755 --- a/include/auth.php +++ b/include/auth.php @@ -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.').'

'. t('The error message was:').' '.$e->getMessage()); + } // NOTREACHED } }