Update dhcp.php

typo?
This commit is contained in:
WRXTsla
2020-01-26 02:16:47 +01:00
committed by GitHub
parent 8ff2167a75
commit 26190c0f5c

View File

@@ -115,13 +115,11 @@
</thead>
<tbody>
<?php foreach ($leases as $lease) : ?>
<tr>
<?php foreach (explode(' ', $lease) as $prop) : ?>
<tr>
<?php foreach (explode(' ', $lease) as $prop) : ?>
<td><?php echo htmlspecialchars($prop, ENT_QUOTES) ?></td>
<?php endforeach ?>
</tr>
<td><?php echo htmlspecialchars($prop, ENT_QUOTES) ?></td>
<?php endforeach ?>
</tr>
<?php endforeach ?>
</tbody>
</table>