summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAlib <aliboba@free.fr>2010-02-19 16:04:02 +0100
committerAlib <aliboba@free.fr>2010-02-19 16:04:02 +0100
commitc697e1a643cb4d742ed9c095e7821f712df19d94 (patch)
tree2133cf4950e1558a80b312092243ba916bb792c4 /includes
parent2441137a2fbb63547d1963da57c894e8ef889a80 (diff)
downloadistreamdev-c697e1a643cb4d742ed9c095e7821f712df19d94.tar.gz
istreamdev-c697e1a643cb4d742ed9c095e7821f712df19d94.tar.bz2
fixed inc_vdr.php for comma channel. Something was missing.
Diffstat (limited to 'includes')
-rwxr-xr-xincludes/inc_vdr.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/inc_vdr.php b/includes/inc_vdr.php
index c96217c..49c1acf 100755
--- a/includes/inc_vdr.php
+++ b/includes/inc_vdr.php
@@ -53,7 +53,7 @@ function vdrgetinfostream($stream = "NULL", $ischan = 1)
if ($chanfound == 0)
{
$streamArray = explode(",",$stream);
- if (strstr($allepg[$i], $stream) == $stream)
+ if (strstr($allepg[$i], $streamArray[0]) == $streamArray[0])
$chanfound = 1;
}
else