diff --git a/modules/monitoring/application/views/scripts/list/hosts.phtml b/modules/monitoring/application/views/scripts/list/hosts.phtml
index c6c0342fd..41bb059e2 100644
--- a/modules/monitoring/application/views/scripts/list/hosts.phtml
+++ b/modules/monitoring/application/views/scripts/list/hosts.phtml
@@ -5,17 +5,17 @@ $hosts->peekAhead($this->compact);
if (! $this->compact): ?>
- = $this->tabs; ?>
+ = $this->tabs ?>
- = $this->render('list/components/selectioninfo.phtml'); ?>
-
compact ? ' data-base-target="col1"' : ''; ?>
- = $this->render('list/components/hostssummary.phtml'); ?>
+ = $this->render('list/components/selectioninfo.phtml') ?>
+ compact ? ' data-base-target="col1"' : '' ?>
+ = $this->render('list/components/hostssummary.phtml') ?>
- = $this->sortBox; ?>
- = $this->limiter; ?>
- = $this->paginator; ?>
- = $this->filterEditor; ?>
+ = $this->sortBox ?>
+ = $this->limiter ?>
+ = $this->paginator ?>
+ = $this->filterEditor ?>
@@ -37,7 +37,7 @@ if (! $this->compact): ?>
- = Host::getStateText($host->host_state, true); ?>
+ = Host::getStateText($host->host_state, true) ?>
host_state !== 99): ?>
= $this->timeSince($host->host_last_state_change, $this->compact) ?>
@@ -60,7 +60,7 @@ if (! $this->compact): ?>
'title' => sprintf($this->translate('Show detailed information for host %s'), $host->host_display_name),
'class' => 'rowaction'
)
- ); ?>
+ ) ?>
host_name])): ?>
(= $this->qlink(
sprintf(
@@ -97,7 +97,7 @@ if (! $this->compact): ?>
hasResult()): ?>
- = $this->translate('No hosts found matching the filter'); ?>
+ = $this->translate('No hosts found matching the filter') ?>
hasMore()): ?>
= $this->qlink(
$this->translate('Show More'),
@@ -107,6 +107,6 @@ if (! $this->compact): ?>
'data-base-target' => '_next',
'class' => 'pull-right show-more'
)
- ); ?>
+ ) ?>
|