mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fix PHP warning
This commit is contained in:
parent
cf019954e2
commit
b94eb4b905
@ -228,7 +228,7 @@ print $form;
|
||||
$states = count($res);
|
||||
}
|
||||
|
||||
for ($i = 0; $i < $states; $i++) {
|
||||
for ($i = 0; $i < $states; $i++):
|
||||
$info = $res[$i]['src'];
|
||||
$srcip = get_ip($res[$i]['src']);
|
||||
$dstip = get_ip($res[$i]['dst']);
|
||||
@ -260,8 +260,8 @@ print $form;
|
||||
title="<?=sprintf(gettext('Remove all state entries from %1$s to %2$s'), $srcip, $killdstip);?>"></a>
|
||||
</td>
|
||||
</tr>
|
||||
<?
|
||||
}
|
||||
<?php
|
||||
endfor;
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user