Просмотр исходного кода

Replace uk with gb (#2962)

https://github.com/ipverse/rir-ip/blob/master/country/gb/ipv4-aggregated.txt instead https://github.com/ipverse/rir-ip/blob/master/country/uk/ipv4-aggregated.txt
Jaap Marcus 3 лет назад
Родитель
Сommit
ea6125b245
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      web/templates/pages/add_firewall_ipset.html

+ 1 - 1
web/templates/pages/add_firewall_ipset.html

@@ -86,7 +86,7 @@
 <script>
 	var country_iplists = [
 		<?php
-			$country = array('ca' => 'Canada', 'cn' => 'China', 'fr' => 'French', 'de' => 'Germany', 'in' => 'India', 'nl' => 'Netherlands', 'ro' => 'Romania', 'ru' => 'Russia', 'es' => 'Spain', 'ch' => 'Switzerland', 'tr' => 'Turkey', 'ua' => 'Ukraine',  'uk' => 'United Kingdom', 'us' => 'United States');
+			$country = array('ca' => 'Canada', 'cn' => 'China', 'fr' => 'French', 'de' => 'Germany', 'in' => 'India', 'nl' => 'Netherlands', 'ro' => 'Romania', 'ru' => 'Russia', 'es' => 'Spain', 'ch' => 'Switzerland', 'tr' => 'Turkey', 'ua' => 'Ukraine',  'gb' => 'United Kingdom', 'us' => 'United States');
 			foreach($country as $iso =>$name){
 				echo '{name: "[IPv4] Country - '.$name.'",	source:"https://raw.githubusercontent.com/ipverse/rir-ip/master/country/'.$iso.'/ipv4-aggregated.txt"},'."\n";
 			}