mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-23 01:59:14 +00:00
[QSO] By limiting this to 100, a lot counties never got displayed.
This commit is contained in:
parent
ecf19488a6
commit
98cfc18e84
@ -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]];
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user