Correct wrong service class check for webpages

This commit is contained in:
Christian Vogeley 2013-12-31 16:03:25 +01:00
parent 84d8fab6f1
commit 22e94d7d68

View File

@ -1135,8 +1135,9 @@ function item_check_service_class($channel_id,$iswebpage) {
if ($iswebpage) {
$r = q("select count(i.id) as total from item i
right join channel c on (i.author_xchan=c.channel_hash and i.uid=c.channel_id )
and i.parent=i.id and (i.item_restrict & %d) and i.uid= %d ",
and i.parent=i.id and (i.item_restrict & %d) and not (i.item_restrict & %d) and i.uid= %d ",
intval(ITEM_WEBPAGE),
intval(ITEM_DELETED),
intval($channel_id)
);
}