diff options
author | Mario <mario@mariovavti.com> | 2021-05-31 09:07:50 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-31 09:07:50 +0000 |
commit | 5e07ebe7fa7691869e3ab85dab0a27b3123d335c (patch) | |
tree | 862f5234980cb427435b10852c83ca95042335c3 /include | |
parent | e9088bd52e84f765fc63e030aec6cac771882c61 (diff) | |
download | volse-hubzilla-5e07ebe7fa7691869e3ab85dab0a27b3123d335c.tar.gz volse-hubzilla-5e07ebe7fa7691869e3ab85dab0a27b3123d335c.tar.bz2 volse-hubzilla-5e07ebe7fa7691869e3ab85dab0a27b3123d335c.zip |
fix registration bug - issue #1574
Diffstat (limited to 'include')
-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) { |