summaryrefslogtreecommitdiff
path: root/includes/inc_vdr.php
diff options
context:
space:
mode:
authorroot <root@mediaserver.Belkin>2010-02-18 08:38:49 +0100
committerroot <root@mediaserver.Belkin>2010-02-18 08:38:49 +0100
commit2426652089532de407e1332768127f739ad1674b (patch)
tree048201176ae749e4c32cd96451f8f3683f9fa4e7 /includes/inc_vdr.php
parentf27608f2695d51f563adb6ebc8c475c6a8df53ba (diff)
downloadistreamdev-2426652089532de407e1332768127f739ad1674b.tar.gz
istreamdev-2426652089532de407e1332768127f739ad1674b.tar.bz2
corrected back from streaming page
Diffstat (limited to 'includes/inc_vdr.php')
-rwxr-xr-xincludes/inc_vdr.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/inc_vdr.php b/includes/inc_vdr.php
index d36c8cc..a90d80f 100755
--- a/includes/inc_vdr.php
+++ b/includes/inc_vdr.php
@@ -3,7 +3,7 @@ include ('includes/inc_svdrp.php');
function vdrgetinfostream($stream = "NULL", $ischan = 1)
{
- global $allepg, $allepgfilled, $svdrpip, $svdrpport, $vdrrecpath;
+ global $allepg, $allepgfilled, $svdrpip, $svdrpport;
if ($ischan)
{
@@ -21,12 +21,12 @@ function vdrgetinfostream($stream = "NULL", $ischan = 1)
}
else
{
- $infofile = $vdrrecpath .$stream ."/info";
+ $infofile = $stream ."/info";
if (file_exists($infofile))
$info= file_get_contents($infofile);
else
{
- $infofile = $vdrrecpath .$stream ."/info.vdr";
+ $infofile = $stream ."/info.vdr";
if (file_exists($infofile))
$info= file_get_contents($infofile);
else