Skip to content

Commit

Permalink
fix(user): used items list
Browse files Browse the repository at this point in the history
  • Loading branch information
Rom1-B authored and cedric-anne committed Jun 3, 2024
1 parent 2de2bc1 commit bcd8d9a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -5120,7 +5120,10 @@ public function showItems($tech)
$itemtable = getTableForItemType($itemtype);
$iterator_params = [
'FROM' => $itemtable,
'WHERE' => ['OR' => $group_where]
'WHERE' => [
'entities_id' => $this->getEntities(),
'OR' => $group_where
]
];

if ($item->maybeTemplate()) {
Expand Down

0 comments on commit bcd8d9a

Please sign in to comment.