aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Diekershoff <tobias.diekershoff@gmx.net>2012-03-11 12:03:47 +0100
committerTobias Diekershoff <tobias.diekershoff@gmx.net>2012-03-11 12:03:47 +0100
commit6cbd765e1ff77a1efb01b1f096a875c881c43905 (patch)
tree1947ec331792e04738eee768942223797c3932bc
parent3c168503834651b56b9b5de61621e8fbe958c298 (diff)
downloadvolse-hubzilla-6cbd765e1ff77a1efb01b1f096a875c881c43905.tar.gz
volse-hubzilla-6cbd765e1ff77a1efb01b1f096a875c881c43905.tar.bz2
volse-hubzilla-6cbd765e1ff77a1efb01b1f096a875c881c43905.zip
Revert "OpenID: display error msg if ID URL used to register an account does not exist"
This reverts commit 3c168503834651b56b9b5de61621e8fbe958c298.
-rwxr-xr-xinclude/auth.php13
1 files changed, 4 insertions, 9 deletions
diff --git a/include/auth.php b/include/auth.php
index 6a3e31cb7..fc52684e6 100755
--- a/include/auth.php
+++ b/include/auth.php
@@ -117,15 +117,10 @@ else {
// NOTREACHED
}
// new account
- 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() );
- }
+ $_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());
// NOTREACHED
}
}