fix postgres issue if register mode is set to yes - with approval
This commit is contained in:
parent
6ad4ed87a3
commit
984de8f46f
@ -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);
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user