monitoring: indent php blocks in config/index.phtml properly

This commit is contained in:
Eric Lippmann 2014-10-29 11:33:31 +01:00
parent e7ef1826b7
commit 319c5e7833
1 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@
<th style="width: 5em"><?= $this->translate('Remove'); ?></th>
</thead>
<tbody>
<?php foreach ($this->backendsConfig as $backendName => $config): ?>
<?php foreach ($this->backendsConfig as $backendName => $config): ?>
<tr>
<td>
<a href="<?= $this->href('/monitoring/config/editbackend', array('backend' => $backendName)); ?>">
@ -32,7 +32,7 @@
</a>
</td>
</tr>
<?php endforeach; ?>
<?php endforeach; ?>
</tbody>
</table>
<h1><?= $this->translate('Monitoring Instances') ?></h1>
@ -47,7 +47,7 @@
<th style="width: 5em"><?= $this->translate('Remove'); ?></th>
</thead>
<tbody>
<?php foreach ($this->instancesConfig as $instanceName => $config): ?>
<?php foreach ($this->instancesConfig as $instanceName => $config): ?>
<tr>
<td>
<a href="<?= $this->href('/monitoring/config/editinstance', array('instance' => $instanceName)); ?>">
@ -64,7 +64,7 @@
</a>
</td>
</tr>
<?php endforeach; ?>
<?php endforeach; ?>
</tbody>
</table>
</div>