From 4e5979c195fdfab1a9c31bae43bc3d55864d2a51 Mon Sep 17 00:00:00 2001 From: Alex Jordan Date: Fri, 11 Oct 2024 12:30:36 -0700 Subject: [PATCH] fix how many seconds are in an hour --- lib/WeBWorK/Utils/ProblemProcessing.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WeBWorK/Utils/ProblemProcessing.pm b/lib/WeBWorK/Utils/ProblemProcessing.pm index 7ce688ded0..b2755a5ed9 100644 --- a/lib/WeBWorK/Utils/ProblemProcessing.pm +++ b/lib/WeBWorK/Utils/ProblemProcessing.pm @@ -277,7 +277,7 @@ async sub process_and_log_answer ($c) { $LMSname, int($ce->{LTIMassUpdateInterval} / 60 + 0.99)); } else { $scoreRecordedMessage .= $c->maketext('Scores are sent to [_1] every [quant,_2,hour].', - $LMSname, int($ce->{LTIMassUpdateInterval} / 36000 + 0.9999)); + $LMSname, int($ce->{LTIMassUpdateInterval} / 3600 + 0.9999)); } } }