diff options
author | friendica <info@friendica.com> | 2012-08-15 23:15:29 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-08-15 23:15:29 -0700 |
commit | 5b547ae991624924c0ef11dbe36ae57f5ec2182b (patch) | |
tree | 875bdc2b49a588f9076d83f21362de26540acbf6 /include/account.php | |
parent | f7c6a6ff9071c120f5bd6efe51cdb934e0c30cc7 (diff) | |
download | volse-hubzilla-5b547ae991624924c0ef11dbe36ae57f5ec2182b.tar.gz volse-hubzilla-5b547ae991624924c0ef11dbe36ae57f5ec2182b.tar.bz2 volse-hubzilla-5b547ae991624924c0ef11dbe36ae57f5ec2182b.zip |
registration dangling code fragment that should've been removed
Diffstat (limited to 'include/account.php')
-rw-r--r-- | include/account.php | 47 |
1 files changed, 33 insertions, 14 deletions
diff --git a/include/account.php b/include/account.php index 4191d8d0b..91891ab23 100644 --- a/include/account.php +++ b/include/account.php @@ -7,6 +7,36 @@ require_once('include/text.php'); require_once('include/language.php'); require_once('include/datetime.php'); + +function check_account_email($email) { + + $result = array('error' => false, 'message' => ''); + + // Caution: empty email isn't counted as an error in this function. Check emptiness separately. + + if(! strlen($email)) + return $result; + + if((! valid_email($email)) || (! validate_email($email))) + $result['message'] .= t('Not a valid email address') . EOL; + elseif(! allowed_email($email)) + $result['message'] = t('Your email domain is not among those allowed on this site'); + else { + $r = q("select account_email from account where account_email = '%s' limit 1", + dbesc($email) + ); + if(count($r)) { + $result['message'] .= t('Your email address is already registered at this site.'); + } + } + if($result['message']) + $result['error'] = true; + + return $result; +} + + + function create_account($arr) { // Required: { email, password } @@ -40,24 +70,13 @@ function create_account($arr) { return; } - if(! allowed_email($email)) - $result['message'] .= t('Your email domain is not among those allowed on this site.') . EOL; - - if((! valid_email($email)) || (! validate_email($email))) - $result['message'] .= t('Not a valid email address.') . EOL; - - $r = q("select account_email, account_password from account where email = '%s' limit 1", - + $email_result = check_account_email($email); - - - - if(strlen($result['message'])) { + if(! $email_result['error']) { + $result['message'] = $email_result['message']; return $result; } - - $password_encoded = hash('whirlpool',$password); $r = q("INSERT INTO account |