diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-24 17:40:22 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-24 17:40:22 +0100 |
commit | 50c89b73b4f8e3e4b86dcac9865ee96931c7a9b4 (patch) | |
tree | c0c62ffc767fb791eb57f173a4ade020dd80951a /bin/session.php | |
parent | 9a1a60cd639222e20564eef754d69abfdc761e20 (diff) | |
download | istreamdev-50c89b73b4f8e3e4b86dcac9865ee96931c7a9b4.tar.gz istreamdev-50c89b73b4f8e3e4b86dcac9865ee96931c7a9b4.tar.bz2 |
Added getepg and getepginfo
Diffstat (limited to 'bin/session.php')
-rwxr-xr-x | bin/session.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/session.php b/bin/session.php index 144b8da..0819632 100755 --- a/bin/session.php +++ b/bin/session.php @@ -142,8 +142,8 @@ function sessiongetinfo($session) case 'tv': $info['name'] = $channame; $channum = vdrgetchannum($channame); - list($info['now_time'], $info['now_title'], $info['now_desc']) = vdrgetchanepg($channum, 1); - list($info['next_time'], $info['next_title'], $info['next_desc']) = vdrgetchanepg($channum, 0); + list($info['now_time'], $info['now_title'], $info['now_desc']) = vdrgetchanat($channum, "now"); + list($info['next_time'], $info['next_title'], $info['next_desc']) = vdrgetchanat($channum, "next"); break; case 'rec': $info['channel'] = $channame; |