diff options
author | Thomas Willingham <founder@kakste.com> | 2013-02-02 15:00:13 +0000 |
---|---|---|
committer | Thomas Willingham <founder@kakste.com> | 2013-02-02 15:00:13 +0000 |
commit | 70dc7993be7a89c7809c74dc8606d071abf962d1 (patch) | |
tree | 252094911183cc6ee8908fec1664160bfaf22abf /mod/admin.php | |
parent | 0f13ae0ade10d6d2b0ef185ae6d6cc2d35831433 (diff) | |
download | volse-hubzilla-70dc7993be7a89c7809c74dc8606d071abf962d1.tar.gz volse-hubzilla-70dc7993be7a89c7809c74dc8606d071abf962d1.tar.bz2 volse-hubzilla-70dc7993be7a89c7809c74dc8606d071abf962d1.zip |
We DO only have one queue for now.
Diffstat (limited to 'mod/admin.php')
-rw-r--r-- | mod/admin.php | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mod/admin.php b/mod/admin.php index e411002e5..9a8a58cfc 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -172,10 +172,6 @@ function admin_page_summary(&$a) { $r = q("SELECT COUNT(id) as `count` FROM `register`"); $pending = $r[0]['count']; -// We don't seem to do anything like this anymore. Comment out just in case. -// $r = q("select count(*) as total from deliverq where 1"); -// $deliverq = (($r) ? $r[0]['total'] : 0); - $r = q("select count(*) as total from outq"); $queue = (($r) ? $r[0]['total'] : 0); |