Skip to content

Commit

Permalink
Fix template
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Nov 17, 2023
1 parent e7fe20a commit 2309b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/Admin/Queue/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<?php
/** @var \Cake\I18n\DateTime $time */
$time = $status['time'];
$running = $time->addMinute()->isFuture();
$running = $time->addMinutes(1)->isFuture();
?>
<?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']))?>)

Expand Down

0 comments on commit 2309b23

Please sign in to comment.