phpgroupware-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-tracker] [Bug #761] Calendar conflict when one meeting sta


From: nobody
Subject: [Phpgroupware-tracker] [Bug #761] Calendar conflict when one meeting starts at the same time another one ends
Date: Wed, 26 Jun 2002 14:16:40 -0400

=================== BUG #761: FULL BUG SNAPSHOT ===================
http://savannah.gnu.org/bugs/?func=detailbug&bug_id=761&group_id=509

Submitted by: None                      Project: phpGroupWare                   
Submitted on: 2002-Jun-26 14:16
Category:  calendar                     Bug Group:  0.9.14 release              
Severity:  5 - Major                    Priority:  None                         
Resolution:  None                       Assigned to:  None                      
Status:  Open                           Platform Version:  Linux - RedHat       
Reproducibility:  Every Time            

Summary:  Calendar conflict when one meeting starts at the same time another 
one ends

Original Submission:  If you have an existing meeting from 10:00 - 11:00, and 
then you 
schedule another from 9:00 - 10:00, calendar warns that it 
conflicts with the first entry. 

What I found in class.bocalendar.inc.php,v 1.71.2.7 function overlap where the 
start and end times of meetings
scheduled for the same day are compared is

if((($temp_start_time <= $temp_event_start) && ($temp_end_time >= 
$temp_event_start) && ($temp_end_time <= $temp_event_end)) ||

should be 

if((($temp_start_time <= $temp_event_start) && ($temp_end_time > 
$temp_event_start) && ($temp_end_time <= $temp_event_end)) ||

It should only have a conflict if the end of the first
meeting is after the start of the second meeting not
if it ends right when the second meeting starts.



No Followups Have Been Posted




No files currently attached


For detailed info, follow this link:
http://savannah.gnu.org/bugs/?func=detailbug&bug_id=761&group_id=509



reply via email to

[Prev in Thread] Current Thread [Next in Thread]