start removing db backticks

This commit is contained in:
redmatrix
2016-10-03 19:47:36 -07:00
parent fe7b7773ba
commit bad5057a74
6 changed files with 13 additions and 13 deletions

View File

@@ -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();