diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-26 13:16:57 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-26 13:16:57 +0100 |
commit | 9cd6bbb758f3be5c2390a77770cc54b05dcf0b83 (patch) | |
tree | dad5c87d27cc8c21bfcf12d436abd8cf2c474000 | |
parent | 1ded5635fd63dc67166ee05ea5b87f578e672c61 (diff) | |
download | istreamdev-9cd6bbb758f3be5c2390a77770cc54b05dcf0b83.tar.gz istreamdev-9cd6bbb758f3be5c2390a77770cc54b05dcf0b83.tar.bz2 |
Fixed channels with a "," (i hope)
-rwxr-xr-x | includes/inc_vdr.php | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |