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