From 5de24f23a3cba96990b312a5e6564c40d619976d Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Wed, 12 Apr 2017 21:30:09 +0000 Subject: [PATCH] Ignore hashchange event on self-inflicted modifications --- stops/download_stops.php | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stops/download_stops.php b/stops/download_stops.php index e5be954..ddce8b9 100644 --- a/stops/download_stops.php +++ b/stops/download_stops.php @@ -2,7 +2,7 @@ if(php_sapi_name() !== 'cli') die(); $chars = 'aąbcćdeęfghijklłmnńoóprsśtuvwxyzżź0123456789'; -$len = mb_strlen($chars); +$len = mb_strlen($chars, 'UTF-8'); $replacements = [ 'Ó' => 'Ó', @@ -14,7 +14,7 @@ $stops = []; for($i = 0; $i < $len; $i++) { for($j = 0; $j < $len; $j++) { - $char = mb_substr($chars, $i, 1).mb_substr($chars, $j, 1); + $char = mb_substr($chars, $i, 1, 'UTF-8').mb_substr($chars, $j, 1, 'UTF-8'); $json = file_get_contents('http://www.ttss.krakow.pl/internetservice/services/lookup/autocomplete/json?query='.urlencode($char)); $elements = json_decode($json, 1); foreach($elements as $element) { -- Gitblit v1.9.1