removed matched items from item lists

This commit is contained in:
Jan Felix Wiebe 2018-12-28 01:24:31 +01:00
parent aaff9d65be
commit 8881ab8041
3 changed files with 14 additions and 6 deletions

View file

@ -46,7 +46,7 @@
</tfoot>
<tbody>
<?php
foreach( get_lostitems() as $item){
foreach( get_lostitems(true) as $item){
?>
<tr>
<td><?php echo $item["id"]; ?></td>

View file

@ -44,7 +44,7 @@
</tfoot>
<tbody>
<?php
foreach( get_founditems() as $item){
foreach( get_founditems(true) as $item){
?>
<tr>
<td><?php echo $item["id"]; ?></td>