forked from mirrors/easyappointments
Corrected availabilities generation in booking page.
This commit is contained in:
parent
950866d90f
commit
d60193c926
1 changed files with 1 additions and 1 deletions
|
@ -913,7 +913,7 @@ class Appointments extends CI_Controller {
|
|||
|
||||
$periods[] = [
|
||||
'start' => $appointment_end->format('H:i'),
|
||||
'end' => $appointment_end->format('H:i')
|
||||
'end' => $period_end->format('H:i')
|
||||
];
|
||||
}
|
||||
else if ($appointment_start == $period_start && $appointment_end == $period_end)
|
||||
|
|
Loading…
Reference in a new issue