diff --git a/modules/monitoring/application/views/scripts/partials/downtime/downtime-header.phtml b/modules/monitoring/application/views/scripts/partials/downtime/downtime-header.phtml
index 455514d0a..8f3fc7e45 100644
--- a/modules/monitoring/application/views/scripts/partials/downtime/downtime-header.phtml
+++ b/modules/monitoring/application/views/scripts/partials/downtime/downtime-header.phtml
@@ -1,10 +1,10 @@
start <= time() && ! $downtime->is_in_effect): ?>
= $this->translate('ENDS', 'Downtime status'); ?>
- = $this->timeUntil($downtime->is_flexible ? $downtime->scheduled_end : $downtime->end, $this->compact) ?>
+ = $this->timeUntil($downtime->is_flexible ? $downtime->scheduled_end : $downtime->end, $this->compact, true) ?>
= $downtime->is_in_effect ? $this->translate('EXPIRES', 'Downtime status') : $this->translate('STARTS', 'Downtime status'); ?>
- = $this->timeUntil($downtime->is_in_effect ? $downtime->end : $downtime->start, $this->compact) ?>
+ = $this->timeUntil($downtime->is_in_effect ? $downtime->end : $downtime->start, $this->compact, true) ?>
|
@@ -47,7 +47,7 @@
)) ?>
is_in_effect && $downtime->start >= time()): ?>
- = sprintf($this->translate('expires %s'), $this->timeUntil($downtime->end)) ?>
+ = sprintf($this->translate('expires %s'), $this->timeUntil($downtime->end, false, true)) ?>
|