aboutsummaryrefslogtreecommitdiffstats
path: root/include/account.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-04-19 19:07:50 +0000
committerMario <mario@mariovavti.com>2021-04-19 19:07:50 +0000
commit20ca6676d291cf03e6790d6ec5106c10712dd6e8 (patch)
tree371ff03a1c9cb4fafbdbc5ecb3a08b30d3089a4e /include/account.php
parenteded0f6c09475a138e042de4f6845d54e7a6e60c (diff)
downloadvolse-hubzilla-20ca6676d291cf03e6790d6ec5106c10712dd6e8.tar.gz
volse-hubzilla-20ca6676d291cf03e6790d6ec5106c10712dd6e8.tar.bz2
volse-hubzilla-20ca6676d291cf03e6790d6ec5106c10712dd6e8.zip
registration: reveal possibility to show all registrations in the UI
Diffstat (limited to 'include/account.php')
-rw-r--r--include/account.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/account.php b/include/account.php
index a7a87f331..349c6cfee 100644
--- a/include/account.php
+++ b/include/account.php
@@ -1276,7 +1276,7 @@ function get_pending_accounts($get_all = false) {
if($get_all)
$sql_extra = '';
- $r = q("SELECT reg_did2, reg_created, reg_startup, reg_expires, reg_email, reg_atip, reg_hash, reg_id, reg_stuff
+ $r = q("SELECT reg_did2, reg_created, reg_startup, reg_expires, reg_email, reg_atip, reg_hash, reg_id, reg_flags, reg_stuff
FROM register WHERE reg_vital = 1 $sql_extra AND (reg_flags & %d) >= 0",
intval(ACCOUNT_PENDING)
);