diff options
author | friendica <info@friendica.com> | 2013-12-10 20:36:11 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-10 20:36:11 -0800 |
commit | e5ea4a009b81c7f3fa987ba34d20a996055775d6 (patch) | |
tree | 3c5a659f1d45ddb4e3d6228ba8161f7133df4873 /mod/admin.php | |
parent | 6e4f9b7ecc42b7196a41c32d1f2a68e4e029ee04 (diff) | |
download | volse-hubzilla-e5ea4a009b81c7f3fa987ba34d20a996055775d6.tar.gz volse-hubzilla-e5ea4a009b81c7f3fa987ba34d20a996055775d6.tar.bz2 volse-hubzilla-e5ea4a009b81c7f3fa987ba34d20a996055775d6.zip |
mod channel is now Comanchified
Diffstat (limited to 'mod/admin.php')
-rw-r--r-- | mod/admin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/admin.php b/mod/admin.php index 2fd762e27..9a6aea35a 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -628,7 +628,7 @@ function admin_page_users(&$a){ } /* get pending */ - $pending = q("SELECT * from account where (account_flags & %d ) ", + $pending = q("SELECT account.*, register.hash from account left join register on account_id = register.uid where (account_flags & %d ) ", intval(ACCOUNT_PENDING) ); |