X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=blobdiff_plain;f=html%2Fcgi-bin%2Fcountry.cgi;h=8df2427a9eb10d24fd43bd8c5ce1b36cceecb416;hp=f2ae81300905ee5fafb995224471cdbe5a09aa54;hb=00793c27c929b68a21c4ef07044fbbb68942a192;hpb=a421b8038b927529a4ed08c13539f74f66c18f9e diff --git a/html/cgi-bin/country.cgi b/html/cgi-bin/country.cgi index f2ae813009..8df2427a9e 100644 --- a/html/cgi-bin/country.cgi +++ b/html/cgi-bin/country.cgi @@ -60,7 +60,7 @@ foreach my $country (@countries) { $lines++; # Convert country code into upper case. - my $country_uc = uc($country); + $country = uc($country); # Get flag icon for of the country. my $flag_icon = &GeoIP::get_flag_icon($country); @@ -69,8 +69,8 @@ foreach my $country (@countries) { my $name = &GeoIP::get_full_country_name($country); if ($lines % 2) { - print "$country_uc"; - print "$country_uc"; + print "$country"; + print "$country"; print "$name\n"; } else { $lines2++; @@ -80,8 +80,8 @@ foreach my $country (@countries) { $col="style='background-color:${Header::table1colour};'"; } print ""; - print "$country_uc"; - print "$country_uc"; + print "$country"; + print "$country"; print "$name"; print " ";