From 98cfc18e84bdc5639586dc7ddb8f085658c70c5f Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Sat, 18 Sep 2021 19:12:42 +0200 Subject: [PATCH] [QSO] By limiting this to 100, a lot counties never got displayed. --- application/controllers/Qso.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index bab633bd..245fc1a9 100755 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -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]]; } }