]> git.ipfire.org Git - people/ms/ipfire-2.x.git/commitdiff
zoneconf.cgi: Skip checks for non-existing zones zoneconf
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 31 Mar 2020 18:35:48 +0000 (20:35 +0200)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 31 Mar 2020 18:35:48 +0000 (20:35 +0200)
On systems with RED on PPP and no BLUE or ORANGE zones,
there would always be an error when handling non-existant input.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
html/cgi-bin/zoneconf.cgi

index 6b864281814e1ca13084fb7fa2179c71f27ee810..d99a3e611d8255b5fc9e9e1e84e73573c148c4e6 100644 (file)
@@ -211,6 +211,8 @@ if ($cgiparams{"ACTION"} eq $Lang::tr{"save"}) {
                        my $mac = $_->[0];
                        my $nic_access = $cgiparams{"ACCESS $uc $mac"};
 
+                       next unless ($nic_access);
+
                        if ($nic_access ne "NONE") {
                                if ($VALIDATE_nic_check{"RESTRICT $mac"}) { # If this interface is already assigned to RED in PPP mode, throw an error
                                        $VALIDATE_error = $Lang::tr{"zoneconf val ppp assignment error"};