summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;