From 745cfdd3a0f08eb197f544edd950f019c90f84b8 Mon Sep 17 00:00:00 2001 From: ravkr <rav_kr@interia.pl> Date: Sun, 03 Jun 2018 10:24:11 +0000 Subject: [PATCH] Fix error when feature_clicked is null --- stops/download_stops.php | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/stops/download_stops.php b/stops/download_stops.php index 3990585..3a8227c 100644 --- a/stops/download_stops.php +++ b/stops/download_stops.php @@ -4,6 +4,7 @@ $json = file_get_contents('http://www.ttss.krakow.pl/internetservice/geoserviceDispatcher/services/stopinfo/stops?left=-648000000&bottom=-324000000&right=648000000&top=324000000'); $elements = json_decode($json, 1); foreach($elements['stops'] as $element) { + if($element['category'] == 'other') continue; $stops[$element['shortName']] = $element['name']; } -- Gitblit v1.9.1