From 9cd6bbb758f3be5c2390a77770cc54b05dcf0b83 Mon Sep 17 00:00:00 2001 From: TheTroll Date: Fri, 26 Feb 2010 13:16:57 +0100 Subject: Fixed channels with a "," (i hope) --- includes/inc_vdr.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/inc_vdr.php b/includes/inc_vdr.php index 939e376..1ab233f 100755 --- a/includes/inc_vdr.php +++ b/includes/inc_vdr.php @@ -61,7 +61,7 @@ function vdrgetinfostream($stream = "NULL", $ischan = 1) // Find the right chan (take the first one) if ($chanfound == 0) { - $streamArray = explode(",",$stream); + $streamArray = explode(";",$stream); if (strstr($allepg[$i], $streamArray[0]) == $streamArray[0]) $chanfound = 1; } -- cgit v1.2.3