aboutsummaryrefslogtreecommitdiffstats
path: root/mod/manage.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-07-06 22:48:12 +0200
committerMario Vavti <mario@mariovavti.com>2015-07-06 22:48:12 +0200
commit53f4b260cfe1829446627c7880c6a798e9b493b2 (patch)
treee6662142a7167c5f63f8291bca90a074efee3400 /mod/manage.php
parent4abb1144746e631b9ad4d40a1d88d17fa52af037 (diff)
downloadvolse-hubzilla-53f4b260cfe1829446627c7880c6a798e9b493b2.tar.gz
volse-hubzilla-53f4b260cfe1829446627c7880c6a798e9b493b2.tar.bz2
volse-hubzilla-53f4b260cfe1829446627c7880c6a798e9b493b2.zip
abook_pending should probably be 1 in this place
Diffstat (limited to 'mod/manage.php')
-rw-r--r--mod/manage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/manage.php b/mod/manage.php
index a7327697d..b609ede44 100644
--- a/mod/manage.php
+++ b/mod/manage.php
@@ -70,7 +70,7 @@ function manage_content(&$a) {
}
- $intr = q("SELECT COUNT(abook.abook_id) AS total FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash where abook_channel = %d and abook_pending = 0 and abook_self = 0 and abook_ignored = 0 and xchan_deleted = 0 and xchan_orphan = 0 ",
+ $intr = q("SELECT COUNT(abook.abook_id) AS total FROM abook left join xchan on abook.abook_xchan = xchan.xchan_hash where abook_channel = %d and abook_pending = 1 and abook_self = 0 and abook_ignored = 0 and xchan_deleted = 0 and xchan_orphan = 0 ",
intval($channels[$x]['channel_id'])
);