This is a fix for issue 3536. Now likes aren't show anymore on the community page.

2022.09-rc
Michael 2017-07-31 19:29:43 +00:00
rodzic 390e34d587
commit 55569f9df3
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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);