From 16cd9e2a7e111b4c1ea8babb69862cb82775fa09 Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 16 Feb 2014 14:48:07 -0800 Subject: don't include deleted channels in number of channels service class checks --- mod/manage.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mod/manage.php') diff --git a/mod/manage.php b/mod/manage.php index a2f65b271..0772e2d61 100644 --- a/mod/manage.php +++ b/mod/manage.php @@ -55,8 +55,9 @@ function manage_content(&$a) { } } - $r = q("select count(channel_id) as total from channel where channel_account_id = %d ", - intval(get_account_id()) + $r = q("select count(channel_id) as total from channel where channel_account_id = %d and not ( channel_pageflags & %d )", + intval(get_account_id()), + intval(PAGE_REMOVED) ); $limit = service_class_fetch(local_user(),'total_identities'); if($limit !== false) { -- cgit v1.2.3