Use timeAgo() instead of timeSince() in the monitoring health view
refs #6778
This commit is contained in:
parent
3ec6caa15b
commit
44ee4cd609
|
@ -25,11 +25,11 @@ $cp = $this->checkPerformance()->create($this->checkperformance);
|
|||
</tr>
|
||||
<tr>
|
||||
<th><?= $this->translate('Last Status Update'); ?></th>
|
||||
<td><?= sprintf($this->translate('%s ago'), $this->timeSince($this->programStatus->status_update_time)); ?></td>
|
||||
<td><?= $this->timeAgo($this->programStatus->status_update_time); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= $this->translate('Last External Command Check'); ?></th>
|
||||
<td><?= sprintf($this->translate('%s ago'), $this->timeSince($this->programStatus->last_command_check)); ?></td>
|
||||
<td><?= $this->timeAgo($this->programStatus->last_command_check); ?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><?= $this->translate('Last Log File Rotation'); ?></th>
|
||||
|
|
Loading…
Reference in New Issue