aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Admin.php
diff options
context:
space:
mode:
authorredmatrix <mike@macgirvin.com>2016-10-03 19:47:36 -0700
committerredmatrix <mike@macgirvin.com>2016-10-03 19:47:36 -0700
commitbad5057a7414eba7f7133538dd671a1413be00e3 (patch)
tree93ebd1c119757e01c906abda611ed2e6c7b32e24 /Zotlabs/Module/Admin.php
parentfe7b7773ba9630a72d01c68dcdbc23eeced70b1b (diff)
downloadvolse-hubzilla-bad5057a7414eba7f7133538dd671a1413be00e3.tar.gz
volse-hubzilla-bad5057a7414eba7f7133538dd671a1413be00e3.tar.bz2
volse-hubzilla-bad5057a7414eba7f7133538dd671a1413be00e3.zip
start removing db backticks
Diffstat (limited to 'Zotlabs/Module/Admin.php')
-rw-r--r--Zotlabs/Module/Admin.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php
index e3702992f..3ffbdd7fa 100644
--- a/Zotlabs/Module/Admin.php
+++ b/Zotlabs/Module/Admin.php
@@ -101,8 +101,8 @@ class Admin extends \Zotlabs\Web\Controller {
}
// pending registrations
- $r = q("SELECT COUNT(id) AS `count` FROM `register` WHERE `uid` != '0'");
- $pending = $r[0]['count'];
+ $r = q("SELECT COUNT(id) AS rtotal FROM register WHERE uid != '0'");
+ $pending = $r[0]['rtotal'];
// available channels, primary and clones
$channels = array();