From 06e3c320c3eb94291191152a87250c0e3ee85659 Mon Sep 17 00:00:00 2001 From: TheTomcat14 Date: Thu, 13 Feb 2025 14:58:51 +0100 Subject: [PATCH] bugfix attendance tool: group id not present The selected group-ID was not present in the parameters send to the full screen, "tablet" view of the attendance tool. (ps.: only applicable if signature-functionality is active on attendance tool) --- main/attendance/attendance_sheet.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/attendance/attendance_sheet.php b/main/attendance/attendance_sheet.php index 1e7abebc1d0..8956442940a 100755 --- a/main/attendance/attendance_sheet.php +++ b/main/attendance/attendance_sheet.php @@ -286,7 +286,7 @@ function UpdateTableHeaders() { if ($allowSignature) { $iconFullScreen = Display::url( Display::return_icon('view_fullscreen.png', get_lang('SeeForTablet'), [], ICON_SIZE_SMALL), - api_get_self().'?'.api_get_cidreq().'&action=attendance_sheet_list&func=fullscreen&attendance_id='.$attendance_id.'&calendar_id='.$calendar['id'] + api_get_self().'?'.api_get_cidreq().'&action=attendance_sheet_list&func=fullscreen&attendance_id='.$attendance_id.'&calendar_id='.$calendar['id'] . (!empty($groupId) ? '&group_id=' . $groupId : '') ); $isBlocked = 0; $iconBlockName = 'eyes.png';