[QSO] By limiting this to 100, a lot counties never got displayed.

pull/1183/head
Andreas 2021-09-18 19:12:42 +02:00
rodzic ecf19488a6
commit 98cfc18e84
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -386,7 +386,7 @@ class QSO extends CI_Controller {
foreach ($result as &$value) {
$county = explode(',', $value);
// Limit to 100 as to not slowdown browser too much
if (count($json) <= 100) {
if (count($json) <= 300) {
$json[] = ["name"=>$county[1]];
}
}