main inventory shown as class, not function 2

This commit is contained in:
Igor Barkov [iwork] 2019-02-13 12:46:39 +02:00
parent 98af3bfc14
commit 5d82e3f750

View File

@ -2236,11 +2236,11 @@ if (input::get('edit')) {
while ($row = $data->fetch_assoc()) $iteminfo[] = new InventoryItem($row);
foreach ($iteminfo as $ii) {
echo "<tr><td bgcolor='#d3d3d3'>";
echo "<tr><td width='100' align='center' bgcolor='#d3d3d3'>";
$ii->printImage();
$ii->printControls();
echo "</td>";
echo "<td bgcolor='#d3d3d3'>";
echo "<td valign='top' bgcolor='#d3d3d3'>";
$ii->printInfo();
echo "</td></tr>";
}