fix using wrong array. Should use StorageById

pull/2077/head
Isaac Connor 2018-04-04 20:29:01 -04:00
parent 2f6adff1b2
commit 70c7eaef0e
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ while ( $event_row = dbFetchNext($results) ) {
<?php <?php
if ( count($storage_areas) > 1 ) { if ( count($storage_areas) > 1 ) {
?> ?>
<td class="colStorage"><?php echo isset($storage_areas[$event->StorageId()]) ? $storage_areas[$event->StorageId()]->Name() : '' ?></td> <td class="colStorage"><?php echo isset($StorageById[$event->StorageId()]) ? $StorageById[$event->StorageId()]->Name() : '' ?></td>
<?php <?php
} }