aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Admin.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-05-19 00:54:47 -0700
committerzotlabs <mike@macgirvin.com>2018-05-19 00:54:47 -0700
commit8b4af7cf0ba59fe0a50ca7caf843569578ac3044 (patch)
tree88c166406aad394d3f2c8d8a004c202e4b054e81 /Zotlabs/Module/Admin.php
parentdae89ce91c65679003d10da113a45f3ff37a8d39 (diff)
downloadvolse-hubzilla-8b4af7cf0ba59fe0a50ca7caf843569578ac3044.tar.gz
volse-hubzilla-8b4af7cf0ba59fe0a50ca7caf843569578ac3044.tar.bz2
volse-hubzilla-8b4af7cf0ba59fe0a50ca7caf843569578ac3044.zip
hubzilla issue #1086, pending count on admin summary page
Diffstat (limited to 'Zotlabs/Module/Admin.php')
-rw-r--r--Zotlabs/Module/Admin.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php
index 30f3dfa48..934312efe 100644
--- a/Zotlabs/Module/Admin.php
+++ b/Zotlabs/Module/Admin.php
@@ -100,8 +100,12 @@ class Admin extends \Zotlabs\Web\Controller {
}
// pending registrations
- $r = q("SELECT COUNT(id) AS rtotal FROM register WHERE uid != '0'");
- $pending = $r[0]['rtotal'];
+
+ $pdg = q("SELECT account.*, register.hash from account left join register on account_id = register.uid where (account_flags & %d ) > 0 ",
+ intval(ACCOUNT_PENDING)
+ );
+
+ $pending = (($pdg) ? count($pdg) : 0);
// available channels, primary and clones
$channels = array();