Remove trailing semicolons from inline echo tags in config/resource

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-30 11:20:35 +02:00
parent bd62547099
commit 79c11b293b

View File

@ -1,14 +1,14 @@
<div class="controls"> <div class="controls">
<?= $tabs; ?> <?= $tabs ?>
</div> </div>
<div class="content" data-base-target="_next"> <div class="content" data-base-target="_next">
<a href="<?= $this->href('config/createresource'); ?>"> <a href="<?= $this->href('config/createresource') ?>">
<?= $this->icon('plus'); ?> <?= $this->translate('Create A New Resource'); ?> <?= $this->icon('plus') ?> <?= $this->translate('Create A New Resource') ?>
</a> </a>
<table class="action alternating"> <table class="action alternating">
<thead> <thead>
<th><?= $this->translate('Resource'); ?></th> <th><?= $this->translate('Resource') ?></th>
<th style="width: 5em"><?= $this->translate('Remove'); ?></th> <th style="width: 5em"><?= $this->translate('Remove') ?></th>
</thead> </thead>
<tbody> <tbody>
<?php foreach ($this->resources as $name => $value): ?> <?php foreach ($this->resources as $name => $value): ?>
@ -45,7 +45,7 @@
'icon' => $icon, 'icon' => $icon,
'title' => sprintf($this->translate('Edit resource %s'), $name) 'title' => sprintf($this->translate('Edit resource %s'), $name)
) )
); ?> ) ?>
</td> </td>
<td> <td>
<center> <center>
@ -57,11 +57,11 @@
'icon' => 'trash', 'icon' => 'trash',
'title' => sprintf($this->translate('Remove resource %s'), $name) 'title' => sprintf($this->translate('Remove resource %s'), $name)
) )
); ?> ) ?>
</center> </center>
</td> </td>
</tr> </tr>
<?php endforeach; ?> <?php endforeach ?>
</tbody> </tbody>
</table> </table>
</div> </div>