diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-05-12 12:46:09 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-05-12 12:46:09 +0200 |
commit | 2c819c8619eec9daa1843da9d9b8bcb2a69c2384 (patch) | |
tree | 437f22bcbe654a43547267ce0b897240932be87d /include/account.php | |
parent | 10ce6cc154ff42fed9fa538e32a796baa1d14a17 (diff) | |
download | volse-hubzilla-2c819c8619eec9daa1843da9d9b8bcb2a69c2384.tar.gz volse-hubzilla-2c819c8619eec9daa1843da9d9b8bcb2a69c2384.tar.bz2 volse-hubzilla-2c819c8619eec9daa1843da9d9b8bcb2a69c2384.zip |
fix postgres issue if register mode is set to yes - with approval
Diffstat (limited to 'include/account.php')
-rw-r--r-- | include/account.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/account.php b/include/account.php index 2b24364f4..51118c3c5 100644 --- a/include/account.php +++ b/include/account.php @@ -331,7 +331,9 @@ function verify_email_address($arr) { function send_reg_approval_email($arr) { - $r = q("select * from account where account_roles & " . intval(ACCOUNT_ROLE_ADMIN)); + $r = q("select * from account where (account_roles & %d) >= 4096", + intval(ACCOUNT_ROLE_ADMIN) + ); if(! ($r && count($r))) return false; @@ -828,4 +830,4 @@ function get_account_techlevel($account_id = 0) { return (($x) ? intval($x['account_level']) : 0); -}
\ No newline at end of file +} |