Profile is now using the new function as well
This commit is contained in:
parent
5d9083c369
commit
a89a1f31b5
1 changed files with 3 additions and 10 deletions
|
@ -337,16 +337,9 @@ function profile_content(App $a, $update = 0)
|
||||||
$parents_arr[] = $rr['item_id'];
|
$parents_arr[] = $rr['item_id'];
|
||||||
}
|
}
|
||||||
|
|
||||||
$parents_str = implode(', ', $parents_arr);
|
$condition = ['uid' => $a->profile['profile_uid'], 'parent' => $parents_arr];
|
||||||
|
$result = Item::select($a->profile['profile_uid'], [], $condition);
|
||||||
$items = q(item_query($a->profile['profile_uid']) . " AND `item`.`uid` = %d
|
$items = conv_sort(dba::inArray($result), 'created');
|
||||||
AND `item`.`parent` IN (%s)
|
|
||||||
$sql_extra ",
|
|
||||||
intval($a->profile['profile_uid']),
|
|
||||||
dbesc($parents_str)
|
|
||||||
);
|
|
||||||
|
|
||||||
$items = conv_sort($items, 'created');
|
|
||||||
} else {
|
} else {
|
||||||
$items = [];
|
$items = [];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue