From 59898a04e959a8bda92440ef98f18f04306eb86f Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Fri, 13 Jul 2012 18:59:49 +0000 Subject: [PATCH] Zmiana wersji bota na 2.3. --- data/tv/pobierz.php | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/data/tv/pobierz.php b/data/tv/pobierz.php index 279e08f..ccb93bd 100644 --- a/data/tv/pobierz.php +++ b/data/tv/pobierz.php @@ -58,7 +58,9 @@ 217 => 'ZigZap', 361 => 'Cartoon Network', ); -$NUMOF = count($stations)*7; +$NUMOF = count($stations); + +ini_set('mbstring.substitute_character', 'none'); $c = curl_init(); $out = fopen('./xmltv-pre.xml', 'w'); @@ -85,11 +87,12 @@ return; } + $data = mb_convert_encoding($data, 'UTF-8', 'UTF-8'); file_put_contents('./cache/'.$num.'_'.$date, $data); unset($data); } - $doc = new DOMDocument; + $doc = new DOMDocument('1.0', 'utf-8'); @$doc->loadHTMLFile('./cache/'.$num.'_'.$date); $wp = new wp_parse($doc); @@ -114,4 +117,4 @@ } } echo OK; -?> +?> \ No newline at end of file -- Gitblit v1.9.1