/**
* Fetch all comments from a query. Additionally set the newest resharer as thread owner.
*
- * @param array $thread_items Database statement with thread posts
+ * @param mixed $thread_items Database statement with thread posts
* @param boolean $pinned Is the item pinned?
*
* @return array items with parents and comments
$items = DBA::toArray($items_stmt);
- $o .= conversation($a, $items, $pager, 'profile', false, false, 'received', $a->profile['uid']);
+ if ($pager->getStart() == 0 && !empty($a->profile['uid'])) {
+ $pinned_items = Item::selectPinned($a->profile['uid'], ['uri', 'pinned']);
+ $pinned = Item::inArray($pinned_items);
+ $items = array_merge($items, $pinned);
+ }
+
+ $o .= conversation($a, $items, $pager, 'profile', false, false, 'pinned_received', $a->profile['uid']);
$o .= $pager->renderMinimal(count($items));