diff options
author | Mario <mario@mariovavti.com> | 2021-05-31 11:33:47 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-31 11:33:47 +0000 |
commit | b0825ead84718d98bbed39d0e1ee527f114b20a6 (patch) | |
tree | f6dfe24955c4b8dea7a967d2b87d2b050c57eed7 | |
parent | baabb3a8730708634385abdb366a45c6e234e154 (diff) | |
parent | 5e07ebe7fa7691869e3ab85dab0a27b3123d335c (diff) | |
download | volse-hubzilla-b0825ead84718d98bbed39d0e1ee527f114b20a6.tar.gz volse-hubzilla-b0825ead84718d98bbed39d0e1ee527f114b20a6.tar.bz2 volse-hubzilla-b0825ead84718d98bbed39d0e1ee527f114b20a6.zip |
Merge branch 'dev' into six
-rw-r--r-- | include/account.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/account.php b/include/account.php index d138dab41..98d7f00a8 100644 --- a/include/account.php +++ b/include/account.php @@ -48,7 +48,7 @@ function check_account_email($email) { $result['message'] = t('The provided email address is already registered at this site'); } - $register = q("select reg_did2 from register where reg_vital = 1 and reg_did2 = '%s' limit 1", + $register = q("select reg_did2 from register where reg_vital = 1 and reg_did2 = '%s' and reg_didx = 'e' limit 1", dbesc($email) ); if ($register) { |