monitoring: Avoid full stops at the end of comment tooltips
refs #10113
This commit is contained in:
parent
ce1ed7413d
commit
38a752b0ac
|
@ -36,9 +36,9 @@
|
|||
<?= $this->timeAgo($comment->timestamp) ?>
|
||||
</span>
|
||||
<span class="comment-icons" data-base-target="_self">
|
||||
<?= $comment->persistent ? $this->icon('attach', 'This comment is persistent.') : '' ?>
|
||||
<?= $comment->persistent ? $this->icon('attach', 'This comment is persistent') : '' ?>
|
||||
<?= $comment->expiration ? $this->icon('clock', sprintf(
|
||||
$this->translate('This comment expires on %s at %s.'),
|
||||
$this->translate('This comment expires on %s at %s'),
|
||||
$this->formatDate($comment->expiration),
|
||||
$this->formatTime($comment->expiration)
|
||||
)) : '' ?>
|
||||
|
|
Loading…
Reference in New Issue