diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-28 17:08:22 +0200 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-28 17:08:22 +0200 |
commit | 4c9ff47ed18ceb99a2b36d735c2bd14ad5446ceb (patch) | |
tree | ff77d2e15d32198c497487cb09b72d94cdb2a1d6 | |
parent | 4ccc452b74a3065a1e1ebb1b16fa1812398fa244 (diff) | |
download | istreamdev-4c9ff47ed18ceb99a2b36d735c2bd14ad5446ceb.tar.gz istreamdev-4c9ff47ed18ceb99a2b36d735c2bd14ad5446ceb.tar.bz2 |
fixed drift in parameters
-rwxr-xr-x | bin/session.php | 4 | ||||
-rwxr-xr-x | bin/vdr.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/bin/session.php b/bin/session.php index 172a02a..5b9464b 100755 --- a/bin/session.php +++ b/bin/session.php @@ -158,8 +158,8 @@ function sessiongetinfo($session) case 'tv': $info['name'] = $channame; $channum = vdrgetchannum($channame); - 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"); + list($date, $info['now_time'], $info['now_title'], $info['now_desc']) = vdrgetepgat($channum, "now"); + list($date, $info['next_time'], $info['next_title'], $info['next_desc']) = vdrgetepgat($channum, "next"); break; case 'rec': $info['channel'] = $channame; diff --git a/bin/vdr.php b/bin/vdr.php index 2df3044..65979d8 100755 --- a/bin/vdr.php +++ b/bin/vdr.php @@ -298,8 +298,8 @@ function vdrgetchaninfo($channum) $info['name'] = vdrgetchanname($channum); $info['number'] = $channum; - 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"); + list($date, $info['now_time'], $info['now_title'], $info['now_desc']) = vdrgetepgat($channum, "now"); + list($date, $info['next_time'], $info['next_title'], $info['next_desc']) = vdrgetepgat($channum, "next"); return $info; } |