The fetch function now centrally controls the content

This commit is contained in:
Michael 2018-06-24 10:48:29 +00:00
parent 62a61a95d3
commit b03db4643f
14 changed files with 56 additions and 43 deletions

View file

@ -339,7 +339,7 @@ function profile_content(App $a, $update = 0)
$condition = ['uid' => $a->profile['profile_uid'], 'parent' => $parents_arr];
$result = Item::selectForUser($a->profile['profile_uid'], [], $condition);
$items = conv_sort(dba::inArray($result), 'created');
$items = conv_sort(Item::inArray($result), 'created');
} else {
$items = [];
}