public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/5] BUG12156: changed wio.cgi to fix broken Web GUI
@ 2019-09-03 20:45 sfeddersen
  2019-09-03 20:45 ` [PATCH 2/5] BUG12156: added wio rrd files to backup sfeddersen
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: sfeddersen @ 2019-09-03 20:45 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2234 bytes --]

---
 src/wio/wio.cgi | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/wio/wio.cgi b/src/wio/wio.cgi
index c51910f4d..1645aa54e 100644
--- a/src/wio/wio.cgi
+++ b/src/wio/wio.cgi
@@ -1504,7 +1504,7 @@ my $dotip = length($ipaddresses[$a]) - rindex($ipaddresses[$a],'.');
 			$ic = "${_}";
 
 			foreach $interface (@devs_net) {
-			next if ( $netsettings{"$ic"."_DEV"} eq 'red0' && ($netsettings{"RED_TYPE"} eq 'DHCP' || $netsettings{"RED_TYPE"} eq 'PPPOE'));
+			next if ( $netsettings{"$ic"."_DEV"} eq 'red0' && $netsettings{"RED_TYPE"} eq 'PPPOE');
 				if ( $netsettings{"$ic"."_DEV"} eq $interface ) {
 					if ( &General::IpInSubnet($ipaddresses[$a], $netsettings{"$ic"."_NETADDRESS"}, $netsettings{"$ic"."_NETMASK"}) ) {
 						print"<td align='center' height='20'><img src='$imgstatic/$devs_img[$in]' alt='$Lang::tr{$devs_alt[$in]}' title='$Lang::tr{$devs_alt[$in]}' /></td>";
@@ -1558,7 +1558,7 @@ my $dotip = length($ipaddresses[$a]) - rindex($ipaddresses[$a],'.');
 			}
 		}
 
-		if ($netsettings{"RED_TYPE"} eq 'DHCP' || $netsettings{"RED_TYPE"} eq 'PPPOE') {
+		if ( $netsettings{"RED_TYPE"} eq 'PPPOE' ) {
 			my $redipadr = qx'ip addr | grep red0 | grep inet | awk "{print \$2}"';
 			my @rednet = split ("/", $redipadr);
 			chomp ($rednet[1]);
@@ -1569,10 +1569,10 @@ my $dotip = length($ipaddresses[$a]) - rindex($ipaddresses[$a],'.');
 				print"<td align='center' height='20'><img src='$imgstatic/red.png' alt='$Lang::tr{'wio_red_lan'}' title='$Lang::tr{'wio_red_lan'}' /></td>";
 				last SWITCH;
 			}
-			else {
+		}
+		else {
 				print"<td align='center'><img align='middle' src='$imgstatic/white.png' alt='$Lang::tr{'wio_unknown_lan'}' title='$Lang::tr{'wio_unknown_lan'}' /></td>";
 				last SWITCH;
-			}
 		}
 	}
 
@@ -1872,7 +1872,7 @@ SWITCH: {
 		}
 	}
 
-			if ($netsettings{"RED_TYPE"} eq 'DHCP' || $netsettings{"RED_TYPE"} eq 'PPPOE') {
+			if ($netsettings{"RED_TYPE"} eq 'DHCP' || $netsettings{"RED_TYPE"} eq 'PPPOE' || $netsettings{"RED_TYPE"} eq 'STATIC') {
 			my $redipadr = qx'ip addr | grep red0 | grep inet | awk "{print \$2}"';
 			my @rednet = split ("/", $redipadr);
 			chomp ($rednet[1]);
-- 
2.17.1


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-09-05  9:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-03 20:45 [PATCH 1/5] BUG12156: changed wio.cgi to fix broken Web GUI sfeddersen
2019-09-03 20:45 ` [PATCH 2/5] BUG12156: added wio rrd files to backup sfeddersen
2019-09-03 20:45 ` [PATCH 3/5] BUG12156: increased paket number sfeddersen
2019-09-03 20:45 ` [PATCH 4/5] BUG12156: GUI cosmetic to show woi logs cleaner sfeddersen
2019-09-03 20:45 ` [PATCH 5/5] BUG12156: fixed wrong permissions in install script sfeddersen
2019-09-05  9:29 ` [PATCH 1/5] BUG12156: changed wio.cgi to fix broken Web GUI Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox