We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7fe20a commit 2309b23Copy full SHA for 2309b23
templates/Admin/Queue/index.php
@@ -35,7 +35,7 @@
35
<?php
36
/** @var \Cake\I18n\DateTime $time */
37
$time = $status['time'];
38
- $running = $time->addMinute()->isFuture();
+ $running = $time->addMinutes(1)->isFuture();
39
?>
40
<?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']))?>)
41
0 commit comments