From 3c97a446c7c170625e51b02058d2d560b227c4d0 Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Mon, 17 Sep 2012 09:50:13 +0000
Subject: [PATCH] Poprawa błędu w klasie BotSession powodującego wielokrotne tworzenie wpisów w bazie danych sesyjnych (class=NULL, name=user_struct).

---
 data/tv/wp_parse.php |   10 ++--------
 1 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/data/tv/wp_parse.php b/data/tv/wp_parse.php
index 983e4cc..a944be5 100644
--- a/data/tv/wp_parse.php
+++ b/data/tv/wp_parse.php
@@ -74,8 +74,6 @@
 	function xmltv($id, $fp) {
 		$program = array();
 		
-		ini_set('mbstring.substitute_character', 'none');
-		
 		$days_dom = $this->xpath->query('.//ul[@class="lsDay"]//li', $this->context);
 		$days = array();
 		foreach($days_dom as $day) {
@@ -97,11 +95,7 @@
 					$nazwa = $this->xpath->query('.//h3', $programs)->item(0)->textContent;
 					$opis = $this->xpath->query('.//p', $programs)->item(0)->textContent;
 					
-					$program[$num][] = array(
-						$godzina,
-						mb_convert_encoding($nazwa, 'UTF-8', 'UTF-8'),
-						mb_convert_encoding($opis, 'UTF-8', 'UTF-8')
-					);
+					$program[$num][] = array($godzina, $nazwa, $opis);
 				}
 				unset($programs_dom, $programs);
 			}
@@ -138,4 +132,4 @@
 		}
 	}
 }
-?>
+?>
\ No newline at end of file

--
Gitblit v1.9.1