Use timeAgo() instead of timeSince() in the monitoring health view

refs #6778
This commit is contained in:
Eric Lippmann 2015-04-10 10:14:22 +02:00
parent 3ec6caa15b
commit 44ee4cd609
1 changed files with 2 additions and 2 deletions

View File

@ -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>