Skip to content
Snippets Groups Projects
Commit ee9af416 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

fixes #385

parent 39e74e1b
No related branches found
No related tags found
No related merge requests found
......@@ -110,7 +110,9 @@
<? if (count($slot->bookings) > 0): ?>
<ul>
<? foreach ($slot->bookings as $booking): ?>
<li><?= htmlReady($booking->user->getFullName()) ?></li>
<? if ($booking->user): ?>
<li><?= htmlReady($booking->user->getFullName()) ?></li>
<? endif; ?>
<? endforeach; ?>
</ul>
<? else: ?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment