From 694453e74c978ba92f0d620c8b514b968335e700 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. 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 43a07ad9bb..e58813449d 100644 --- a/templates/ContentGenerator/Instructor/ProblemSetList.html.ep +++ b/templates/ContentGenerator/Instructor/ProblemSetList.html.ep @@ -84,7 +84,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'