aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/account.php2
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) {