Skip to content

Commit 40fc33a

Browse files
committed
Fix the argument order for the ContentGenerator formatDateTime calls in the job manager.
1 parent 8a23597 commit 40fc33a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

templates/ContentGenerator/Instructor/JobManager.html.ep

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -165,18 +165,18 @@
165165
</td>
166166
<td class="text-nowrap">
167167
<%= $c->formatDateTime(
168-
$jobs->{$jobID}{created}, '', 'datetime_format_medium', $ce->{language}) =%>
168+
$jobs->{$jobID}{created}, 'datetime_format_medium', '', $ce->{language}) =%>
169169
</td>
170170
<td class="text-nowrap">
171171
% if ($jobs->{$jobID}{started}) {
172172
<%= $c->formatDateTime(
173-
$jobs->{$jobID}{started}, '', 'datetime_format_medium', $ce->{language}) =%>
173+
$jobs->{$jobID}{started}, 'datetime_format_medium', '', $ce->{language}) =%>
174174
% }
175175
</td>
176176
<td class="text-nowrap">
177177
% if ($jobs->{$jobID}{finished}) {
178178
<%= $c->formatDateTime(
179-
$jobs->{$jobID}{finished}, '', 'datetime_format_medium', $ce->{language}) =%>
179+
$jobs->{$jobID}{finished}, 'datetime_format_medium', '', $ce->{language}) =%>
180180
% }
181181
</td>
182182
<td>

0 commit comments

Comments
 (0)