Remove valid RASPI_5GHZ_ISO_ALPHA2 country, set hwModeDisabled

This commit is contained in:
billz
2023-11-05 14:36:18 +00:00
parent e16c69c446
commit 5e802e8a0b
2 changed files with 3 additions and 13 deletions

View File

@@ -881,12 +881,12 @@ function getCountryCodes($locale = 'en', $flag = true) {
if (count($parts) >= 2) {
$countryCode = $parts[0];
if ($flag) {
$countryFlag = $parts[3] . ' ';
$countryName = $parts[4];
$countryFlag = $parts[3];
$countryName = $parts[4] .' ';
} else {
$countryName = $parts[3];
}
$countryData[$countryCode] = $countryFlag .$countryName;
$countryData[$countryCode] = $countryName.$countryFlag;
}
}
return $countryData;