diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-24 19:09:06 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-24 19:09:06 +0100 |
commit | 4b31bd71bf2169ab4b5dc4bcec89bcdaf23a881c (patch) | |
tree | e0c123c273bb70b3ce73145eaaf9dfac438862aa /bin/session.php | |
parent | 50c89b73b4f8e3e4b86dcac9865ee96931c7a9b4 (diff) | |
download | istreamdev-4b31bd71bf2169ab4b5dc4bcec89bcdaf23a881c.tar.gz istreamdev-4b31bd71bf2169ab4b5dc4bcec89bcdaf23a881c.tar.bz2 |
Rewrote getepg (speedup)
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 0819632..886522a 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']) = vdrgetchanat($channum, "now"); - list($info['next_time'], $info['next_title'], $info['next_desc']) = vdrgetchanat($channum, "next"); + list($info['now_time'], $info['now_title'], $info['now_desc']) = vdrgetepgat($channum, "now"); + list($info['next_time'], $info['next_title'], $info['next_desc']) = vdrgetepgat($channum, "next"); break; case 'rec': $info['channel'] = $channame; |