Merge pull request #3607 from annando/issue-3536

Issue 3536. Now likes aren't show anymore on the community page
This commit is contained in:
Tobias Diekershoff 2017-08-01 06:51:41 +02:00 committed by GitHub
commit 8a93725d77
1 changed files with 2 additions and 2 deletions

View File

@ -115,10 +115,10 @@ function community_getpublicitems($start, $itemspage) {
$r = qu("SELECT %s
FROM `thread`
INNER JOIN `item` ON `item`.`id` = `thread`.`iid` %s
WHERE `thread`.`uid` = 0
WHERE `thread`.`uid` = 0 AND `verb` = '%s'
ORDER BY `thread`.`created` DESC LIMIT %d, %d",
item_fieldlists(), item_joins(),
intval($start), intval($itemspage)
dbesc(ACTIVITY_POST), intval($start), intval($itemspage)
);
return($r);