From 332344cff07e9fc89bfcde3717888128cf1edd5e Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Fri, 24 Aug 2012 11:26:28 +0000
Subject: [PATCH] 1. Przeportowanie modułu version (wersja) do nowej wersji API. 2. Przeportowanie modułu czesc do nowej wersji API. 3. Zmiana kolejności ładowania modułu legacy (zmiana numeru).

---
 data/tv/pobierz.php |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/data/tv/pobierz.php b/data/tv/pobierz.php
index 9706a9d..ccb93bd 100644
--- a/data/tv/pobierz.php
+++ b/data/tv/pobierz.php
@@ -60,6 +60,8 @@
 );
 $NUMOF = count($stations);
 
+ini_set('mbstring.substitute_character', 'none');
+
 $c = curl_init();
 $out = fopen('./xmltv-pre.xml', 'w');
 fwrite($out, '<?xml version="1.0" encoding="UTF-8" ?>
@@ -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