diff options
author | Mario <mario@mariovavti.com> | 2021-04-14 19:40:51 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-04-14 19:40:51 +0000 |
commit | e35ab97b7ecbd96e11883bc194bfe9fb5a72e7f2 (patch) | |
tree | 08e00e224e345feee95bb0a3f668aa5a4d1ef580 /include/account.php | |
parent | f9793e870f5c3c531fe48a2294782de0643a6c9b (diff) | |
download | volse-hubzilla-e35ab97b7ecbd96e11883bc194bfe9fb5a72e7f2.tar.gz volse-hubzilla-e35ab97b7ecbd96e11883bc194bfe9fb5a72e7f2.tar.bz2 volse-hubzilla-e35ab97b7ecbd96e11883bc194bfe9fb5a72e7f2.zip |
register: provide a possibility to leave a message id registration is by approval
Diffstat (limited to 'include/account.php')
-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 939a4344e..991e799b5 100644 --- a/include/account.php +++ b/include/account.php @@ -1271,7 +1271,7 @@ function get_pending_accounts() { // better useability at the moment to tell all (ACCOUNT_PENDING >= 0) instead of (> 0 for those need approval) - $r = q("SELECT reg_did2, reg_created, reg_startup, reg_expires, reg_email, reg_atip, reg_hash, reg_id + $r = q("SELECT reg_did2, reg_created, reg_startup, reg_expires, reg_email, reg_atip, reg_hash, reg_id, reg_stuff FROM register WHERE reg_vital = 1 AND (reg_flags & %d) = 0 AND (reg_flags & %d) >= 0", intval(ACCOUNT_UNVERIFIED), intval(ACCOUNT_PENDING) |