diff --git a/admin/schedule.php b/admin/schedule.php index dec5416..d28f855 100644 --- a/admin/schedule.php +++ b/admin/schedule.php @@ -35,10 +35,10 @@ $endhour=$_POST['endhour']; //do some sanity checks - if($starthour<0 || $starthour>24) $starthour=7; + if($starthour<0 || $starthour>24) $starthour=8; if($endhour<$starthour) $endhour=$starthour+10; - if($endhour<0 || $endhour>24) $endhour=17; + if($endhour<0 || $endhour>24) $endhour=15; //minute increment $increment=15;