mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Fix valid interface check on interfaces_lagg_edit.php
This commit is contained in:
parent
dd82d25229
commit
cdad45cd37
@ -91,7 +91,7 @@ if ($_POST) {
|
||||
|
||||
if (is_array($_POST['members'])) {
|
||||
foreach ($_POST['members'] as $member) {
|
||||
if (!does_interface_exist($_POST['members']))
|
||||
if (!does_interface_exist($member))
|
||||
$input_errors[] = gettext("Interface supplied as member is invalid");
|
||||
}
|
||||
} else if (!does_interface_exist($_POST['members']))
|
||||
|
||||
Loading…
Reference in New Issue
Block a user