monitoring: Use <br> instead of <br /> in the components/notifications view script

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-24 23:36:43 +02:00
parent 958ac7217f
commit 7b7a791fcc
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@
); );
} }
if (! in_array((int) $object->state, array(0, 99))) { if (! in_array((int) $object->state, array(0, 99))) {
echo '<br />'; echo '<br>';
} }
} elseif (in_array((int) $object->state, array(0, 99))) { } elseif (in_array((int) $object->state, array(0, 99))) {
echo '&#45;'; echo '&#45;';
@ -53,7 +53,7 @@
$msg = sprintf( $msg = sprintf(
$this->translate('%d notifications have been sent for this issue.'), $this->translate('%d notifications have been sent for this issue.'),
$object->current_notification_number $object->current_notification_number
) . '<br />' . sprintf( ) . '<br>' . sprintf(
$this->translate('The last one was sent %s.'), $this->translate('The last one was sent %s.'),
$this->timeAgo($object->last_notification) $this->timeAgo($object->last_notification)
); );