Error in calculation of meeting end time
-
There is an error in the code that calculates the meeting end time (you added in the minutes twice):
Your code:
$minutes = intval($duration[0])*60 + intval((isset($duration[1]) ? $duration[1] : ‘0’)) + intval((isset($duration[1]) ? $duration[1] : ‘0’));Should be:
$minutes = intval($duration[0])*60 + intval((isset($duration[1]) ? $duration[1] : ‘0’));
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Error in calculation of meeting end time’ is closed to new replies.