From 8091b1c792342fea895a062a38c2f827bca0799f Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Mon, 25 Jun 2012 15:37:57 +0000
Subject: [PATCH] Zmiana sposobu pobierania programu telewizyjnego w związku ze zmianami na stronie wp.pl oraz poprawa linku do kanału RSS Dziennika Internautów.

---
 class/BotUser.php |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/class/BotUser.php b/class/BotUser.php
index 0040e3a..1326f8c 100644
--- a/class/BotUser.php
+++ b/class/BotUser.php
@@ -51,12 +51,12 @@
 		$this->interface = $data['scheme'];
 		$this->uid = strtr($data['user'], array('\\@' => '@'));
 		$this->network = $data['host'];
-		$this->bot = substr($data['path'], 1);
-		$this->params = $data['query'];
+		$this->bot = substr(@$data['path'], 1);
+		$this->params = @$data['query'];
 	}
 	
 	function __get($name) {
 		return $this->$name;
 	}
 }
-?>
\ No newline at end of file
+?>

--
Gitblit v1.9.1