From 3b7d24c8238637d7c2d020adeae5779e3da5da49 Mon Sep 17 00:00:00 2001 From: james Date: Mon, 14 Jun 2010 16:58:33 +0000 Subject: [PATCH] Adjust the schedule default start/end times --- admin/schedule.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;