From 27e3631a8ca03b3097ad223f9d744a35d3ecefd8 Mon Sep 17 00:00:00 2001 From: Glenn Rice Date: Fri, 7 Aug 2026 14:17:51 -0500 Subject: [PATCH] Fix an obvious issue with the LMS Date Sync form in the Sets Manager. (hotfix) The date synchronization form id is `lms_date_sync`, not `lms_roster_sync`. This clearly makes the LMS Date Synchronization be always shown regardless of the conditions for which it is not supposed be shown. --- templates/ContentGenerator/Instructor/ProblemSetList.html.ep | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/ContentGenerator/Instructor/ProblemSetList.html.ep b/templates/ContentGenerator/Instructor/ProblemSetList.html.ep index bdeb11e0bd..80cb36d89b 100644 --- a/templates/ContentGenerator/Instructor/ProblemSetList.html.ep +++ b/templates/ContentGenerator/Instructor/ProblemSetList.html.ep @@ -79,7 +79,7 @@ % % for my $actionID (@$formsToShow) { % next - % if $actionID eq 'lms_roster_sync' && ( + % if $actionID eq 'lms_date_sync' && ( % !$ce->{LTIVersion} % || $ce->{LTIVersion} ne 'v1p3' % || $ce->{LTIGradeMode} ne 'homework'