diff options
Diffstat (limited to 'app/controllers/course/block_appointments.php')
| -rw-r--r-- | app/controllers/course/block_appointments.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/course/block_appointments.php b/app/controllers/course/block_appointments.php index 9e6b9c2..c735244 100644 --- a/app/controllers/course/block_appointments.php +++ b/app/controllers/course/block_appointments.php @@ -272,11 +272,11 @@ class Course_BlockAppointmentsController extends AuthenticatedController } if ($result && $booking_failures) { //Not all selected rooms for the date could be booked: - $partially_booked_dates[] = $d->getFullName(); + $partially_booked_dates[] = htmlReady($d->getFullName()); } } - return $result ? $d->getFullName() : null; + return $result ? htmlReady($d->getFullName()) : null; }, $dates)); if ($date_count > 1) { |
