$writable = false;
}
- if ($mode === 'network-new' || $mode === 'search' || $community_readonly) {
+ if (in_array($mode, ['network-new', 'search', 'contact-posts']) || $community_readonly) {
/*
* "New Item View" on network page or search page results
$contact = ($r[0]["contact-type"] == ACCOUNT_TYPE_COMMUNITY ? 'owner-id' : 'author-id');
$r = q(item_query() . " AND `item`.`" . $contact . "` = %d AND " . $sql .
- " ORDER BY `item`.`created` DESC LIMIT %d, %d", intval($author_id), intval(local_user()), intval($a->pager['start']), intval($a->pager['itemspage'])
+ " AND `item`.`verb` = '%s' ORDER BY `item`.`created` DESC LIMIT %d, %d",
+ intval($author_id), intval(local_user()), dbesc(ACTIVITY_POST),
+ intval($a->pager['start']), intval($a->pager['itemspage'])
);
- $o = conversation($a, $r, 'community', false);
+ $o = conversation($a, $r, 'contact-posts', false);
$o .= alt_pager($a, count($r));