Skip to content

Commit 3f644f6

Browse files
committed
fix: indicazione ultima esecuzione task
1 parent 6a17483 commit 3f644f6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/gestione_task/edit.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
$status_icon = 'fa-check-circle';
3636
} elseif ($diff->days < 7) {
3737
$status_class = 'info';
38-
$status_text = tr('Eseguito da %d giorni', [$diff->days]);
38+
$status_text = replace(tr('Eseguito da _NUM_ giorni'), ['_NUM_' => $diff->days]);
3939
$status_icon = 'fa-clock-o';
4040
} else {
4141
$status_class = 'warning';

0 commit comments

Comments
 (0)