mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Check for blank lines and ignore them.
This commit is contained in:
parent
f3ebffee04
commit
4fa2be6d7d
@ -99,7 +99,10 @@ if ($_GET['order']) {
|
||||
<?php endif; ?>
|
||||
<td class="list sort_ignore"></td>
|
||||
</tr>
|
||||
<?php foreach ($cpdb as $cpent): ?>
|
||||
<?php foreach ($cpdb as $cpent):
|
||||
if (empty($cpent))
|
||||
continue;
|
||||
?>
|
||||
<tr>
|
||||
<td class="listlr"><?=$cpent[2];?></td>
|
||||
<td class="listr"><?=$cpent[3];?> </td>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user