From 5ef260ae4192d644d621f82bfb0a8f514088cc0c Mon Sep 17 00:00:00 2001 From: Alexander Marx Date: Mon, 10 Mar 2014 12:22:32 +0100 Subject: [PATCH] index.cgi: fix colors and tables for vpn connections --- html/cgi-bin/index.cgi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/html/cgi-bin/index.cgi b/html/cgi-bin/index.cgi index c5ccae809..2ce403001 100644 --- a/html/cgi-bin/index.cgi +++ b/html/cgi-bin/index.cgi @@ -358,7 +358,7 @@ if (($confighash{'ENABLED'} eq "on") || $ovpnip="$ovpnip/$sub"; print < - + OpenVPN $ovpnip @@ -372,7 +372,7 @@ print""; #Check if there are any vpns configured (ipsec and openvpn) &General::readhasharray("${General::swroot}/vpn/config", \%vpnconfig); foreach my $key (sort { ncmp($vpnconfig{$a}[1],$vpnconfig{$b}[1]) } keys %vpnconfig) { - if ($vpnconfig{$key}[0] eq 'on'){ + if ($vpnconfig{$key}[0] eq 'on' && $vpnconfig{$key}[3] ne 'host'){ $showipsec=1; $showbox=1; last; @@ -409,7 +409,7 @@ if ($showbox){ END foreach my $key (sort { uc($vpnconfig{$a}[1]) cmp uc($vpnconfig{$b}[1]) } keys %vpnconfig) { - if ($vpnconfig{$key}[0] eq 'on') { + if ($vpnconfig{$key}[0] eq 'on' && $vpnconfig{$key}[3] ne 'host') { $count++; my ($vpnip,$vpnsub) = split("/",$vpnconfig{$key}[11]); $vpnsub=&General::iporsubtocidr($vpnsub); @@ -420,8 +420,8 @@ END $col = $color{'color20'}; } print ""; - print "$vpnconfig{$key}[1]"; - print "$vpnip"; + print "$vpnconfig{$key}[1]"; + print "$vpnip"; my $activecolor = $Header::colourred; my $activestatus = $Lang::tr{'capsclosed'}; -- 2.39.2