Skip to content

Commit 2309b23

Browse files
committed
Fix template
1 parent e7fe20a commit 2309b23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/Admin/Queue/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<?php
3636
/** @var \Cake\I18n\DateTime $time */
3737
$time = $status['time'];
38-
$running = $time->addMinute()->isFuture();
38+
$running = $time->addMinutes(1)->isFuture();
3939
?>
4040
<?php echo $this->Format->yesNo($running); ?> <?php echo $running ? __d('queue', 'Running') : __d('queue', 'Not running'); ?> (<?php echo __d('queue', 'last {0}', $this->Time->relLengthOfTime($status['time']))?>)
4141

0 commit comments

Comments
 (0)