From 8d7d7c2dcb455557f9c418fede0e33a7caed64f7 Mon Sep 17 00:00:00 2001 From: campbell-m <87438215+campbell-m@users.noreply.github.com> Date: Sun, 17 Sep 2023 10:55:37 +0100 Subject: [PATCH] Fix bug allowing private entry information to be displayed in the week (single room) view. See GitHub Issues #3510. --- web/functions_table.inc | 1 + 1 file changed, 1 insertion(+) diff --git a/web/functions_table.inc b/web/functions_table.inc index a73283b8a3..9c49ec70f4 100644 --- a/web/functions_table.inc +++ b/web/functions_table.inc @@ -1240,6 +1240,7 @@ function week_room_table_innerhtml(string $view, int $view_all, int $year, int $ { foreach ($entries as $entry) { + $entry = prepare_entry($entry); $map->add($entry, $j, $start_first_slot[$j], $start_last_slot[$j]); } }