diff options
Diffstat (limited to 'includes/inc_vdr.php')
-rwxr-xr-x | includes/inc_vdr.php | 6 |
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 |