summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTheTroll <trolldev@gmail.com>2010-03-26 11:46:40 +0100
committerTheTroll <trolldev@gmail.com>2010-03-26 11:46:40 +0100
commitbeca20eb2b8bdd7f9291f3d3ed274da467910565 (patch)
treeed7679d0ae79c5bfa3ad11efee1d1a7d31fff8e8 /bin
parentd52481442927533074333139c7f2372e3c7efc0c (diff)
downloadistreamdev-beca20eb2b8bdd7f9291f3d3ed274da467910565.tar.gz
istreamdev-beca20eb2b8bdd7f9291f3d3ed274da467910565.tar.bz2
Fixed boundaries
Diffstat (limited to 'bin')
-rwxr-xr-xbin/vdr.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/vdr.php b/bin/vdr.php
index 6e1dcec..1701ed4 100755
--- a/bin/vdr.php
+++ b/bin/vdr.php
@@ -437,13 +437,13 @@ function vdrgetfullepgat($channel, $at, $programs)
$validepg = 1;
break;
case "day":
- if (($endtime >= $at) && ($starttime < ($at + 3600*24)))
+ if (($endtime > $at) && ($starttime < ($at + 3600*24)))
$validepg = 1;
else
$validepg = 0;
break;
default:
- if ($endtime >= $at)
+ if ($endtime > $at)
$validepg = 1;
else
$validepg = 0;