fixing bug in left join

This commit is contained in:
/jedi/ 2018-12-28 13:12:52 +01:00
commit 53697a231d
3 changed files with 14 additions and 7 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>