From fca9305b219b708998b7c034e8834fc1d4eed0d3 Mon Sep 17 00:00:00 2001 From: Kent Varmedal Date: Wed, 17 Jun 2020 15:13:54 +0200 Subject: [PATCH] Adding missing td-tag opening Adding td-tag before the country name, solving the problem with malformed table when using the geoip2_country plugin. --- wwwroot/cgi-bin/plugins/geoip2_country.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/wwwroot/cgi-bin/plugins/geoip2_country.pm b/wwwroot/cgi-bin/plugins/geoip2_country.pm index 85f0e29b..e3e1573c 100644 --- a/wwwroot/cgi-bin/plugins/geoip2_country.pm +++ b/wwwroot/cgi-bin/plugins/geoip2_country.pm @@ -142,6 +142,7 @@ sub ShowInfoHost_geoip2_country { print ""; } elsif ($param) { + print ""; my $res = Lookup_geoip2_country($param); if ($res) { $res = lc($res); -- 2.47.2