From: Michael Tremer Date: Tue, 4 Mar 2014 13:26:55 +0000 (+0100) Subject: firewall: Don't colourise MAC addresses. X-Git-Tag: v2.15-rc1~52^2~8 X-Git-Url: http://git.ipfire.org/?p=people%2Fms%2Fipfire-2.x.git;a=commitdiff_plain;h=0ba66e9293e106469894d84268b997a67f71e105 firewall: Don't colourise MAC addresses. Fixes #10491. --- diff --git a/html/cgi-bin/firewall.cgi b/html/cgi-bin/firewall.cgi index 7b75765b2c..9f960b4c09 100644 --- a/html/cgi-bin/firewall.cgi +++ b/html/cgi-bin/firewall.cgi @@ -1286,6 +1286,12 @@ sub getcolor my $val=shift; my $hash=shift; if($optionsfw{'SHOWCOLORS'} eq 'on'){ + # Don't colourise MAC addresses + if (&General::validmac($val)) { + $tdcolor = ""; + return; + } + #custom Hosts if ($nettype eq 'cust_host_src' || $nettype eq 'cust_host_tgt'){ foreach my $key (sort keys %$hash){