diff options
author | TheTroll <trolldev@gmail.com> | 2010-02-27 02:12:43 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-02-27 02:12:43 +0100 |
commit | 32b78254c76ebd9a07ad19edf25f1f0846a33bb8 (patch) | |
tree | d517c7bef969a6498d40fb64106c41363cfc36f7 /includes/inc_streaminfo.php | |
parent | 0c9414a9fecf2278d468acb1cf184e776b5a15c7 (diff) | |
download | istreamdev-32b78254c76ebd9a07ad19edf25f1f0846a33bb8.tar.gz istreamdev-32b78254c76ebd9a07ad19edf25f1f0846a33bb8.tar.bz2 |
Sessions WIP
Diffstat (limited to 'includes/inc_streaminfo.php')
-rwxr-xr-x | includes/inc_streaminfo.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/inc_streaminfo.php b/includes/inc_streaminfo.php index e41b24f..4124396 100755 --- a/includes/inc_streaminfo.php +++ b/includes/inc_streaminfo.php @@ -32,10 +32,10 @@ function readinfostream($session) { $ram = "ram/" .$session ."/"; - if (!file_exists($session ."streaminfo")) + if (!file_exists($ram ."streaminfo")) return array(0, "", "", "", ""); - $infofile = fopen($session ."streaminfo", 'r'); + $infofile = fopen($ram ."streaminfo", 'r'); if (!$infofile) return array(0, "", "", "", ""); |