Skip to content

Commit

Permalink
Merge pull request openwebwork#2600 from Alex-Jordan/bugfix/mass-upda…
Browse files Browse the repository at this point in the history
…te-message

fix how many seconds are in an hour
  • Loading branch information
drgrice1 authored Oct 11, 2024
2 parents 137ed73 + 4e5979c commit 193ff38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WeBWorK/Utils/ProblemProcessing.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}
}
}
Expand Down

0 comments on commit 193ff38

Please sign in to comment.