forked from extern/egroupware
Improper display of day view data, was doing an || instead of &&.
This commit is contained in:
parent
92c0e20c12
commit
92085eb350
@ -2883,7 +2883,7 @@
|
|||||||
{
|
{
|
||||||
echo 'IND before = '.$ind."<br>\n";
|
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;
|
$ind = $last_ind;
|
||||||
$interval_start = $last_interval_start;
|
$interval_start = $last_interval_start;
|
||||||
|
Loading…
Reference in New Issue
Block a user