Improper display of day view data, was doing an || instead of &&.

This commit is contained in:
skeeter 2002-02-18 00:28:54 +00:00
parent 92c0e20c12
commit 92085eb350

View File

@ -2883,7 +2883,7 @@
{
echo 'IND before = '.$ind."<br>\n";
}
if(($ind >= date('H',$starttime)) || ($ind <= date('H',$endtime)))
if(($ind >= date('H',$last_starttime)) && ($ind <= date('H',$last_endtime)))
{
$ind = $last_ind;
$interval_start = $last_interval_start;