logger("add_thread: Add thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
- // Adding a shadow item entry
+ // Store a shadow copy of public items for displaying a global community page?
+ if (!get_config('system', 'global_community'))
+ return;
+
+ // is it already a copy?
if (($itemid == 0) OR ($item['uid'] == 0))
return;
logger("delete_thread: Deleted thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
- if ($count($item)) {
+ if (count($item)) {
$r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND NOT (`uid` IN (%d, 0))",
dbesc($item["uri"]),
intval($item["uid"])
}
function community_getitems($start, $itemspage) {
-// Work in progress return(community_getpublicitems($start, $itemspage));
+ // Work in progress
+ if (get_config('system', 'global_community'))
+ return(community_getpublicitems($start, $itemspage));
$r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`,
$r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
`author-name` AS `name`, `owner-avatar` AS `photo`,
`owner-link` AS `url`, `owner-avatar` AS `thumb`
- FROM `item` WHERE `item`.`uid` = 0 AND `network` IN ('%s', '%s')
+ FROM `item` WHERE `item`.`uid` = 0 AND `network` IN ('%s', '%s', '%s')
AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
ORDER BY `item`.`received` DESC LIMIT %d, %d",
dbesc(NETWORK_DFRN),
dbesc(NETWORK_DIASPORA),
+ dbesc(NETWORK_OSTATUS),
intval($start),
intval($itemspage)
);