diff options
author | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-11 12:00:32 +0100 |
---|---|---|
committer | Tobias Diekershoff <tobias.diekershoff@gmx.net> | 2012-03-11 12:00:32 +0100 |
commit | 3c168503834651b56b9b5de61621e8fbe958c298 (patch) | |
tree | 489826a75584a59309dd282feb94f85fb8786ab0 | |
parent | 50863a19eb9c74ca336df609dbb9dfe5a9c39a31 (diff) | |
download | volse-hubzilla-3c168503834651b56b9b5de61621e8fbe958c298.tar.gz volse-hubzilla-3c168503834651b56b9b5de61621e8fbe958c298.tar.bz2 volse-hubzilla-3c168503834651b56b9b5de61621e8fbe958c298.zip |
OpenID: display error msg if ID URL used to register an account does not exist
-rwxr-xr-x | include/auth.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/include/auth.php b/include/auth.php index fc52684e6..6a3e31cb7 100755 --- a/include/auth.php +++ b/include/auth.php @@ -117,10 +117,15 @@ else { // NOTREACHED } // new account - $_SESSION['register'] = 1; - $openid->required = array('namePerson/friendly', 'contact/email', 'namePerson'); - $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default'); - goaway($openid->authUrl()); + try { + $_SESSION['register'] = 1; + $openid->required = array('namePerson/friendly', 'contact/email', 'namePerson'); + $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default'); + goaway($openid->authUrl()); + } catch (Exception $e) { + // if the OpenID is misspelled we land here + notice( t('We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID.<br /><br />The error message was: ').$e->getMessage() ); + } // NOTREACHED } } |