Skip to content

Commit

Permalink
Remove trailing semicolons from inline echo tags in config/resource
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 30, 2015
1 parent bd62547 commit 79c11b2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions application/views/scripts/config/resource.phtml
@@ -1,14 +1,14 @@
<div class="controls">
<?= $tabs; ?>
<?= $tabs ?>
</div>
<div class="content" data-base-target="_next">
<a href="<?= $this->href('config/createresource'); ?>">
<?= $this->icon('plus'); ?> <?= $this->translate('Create A New Resource'); ?>
<a href="<?= $this->href('config/createresource') ?>">
<?= $this->icon('plus') ?> <?= $this->translate('Create A New Resource') ?>
</a>
<table class="action alternating">
<thead>
<th><?= $this->translate('Resource'); ?></th>
<th style="width: 5em"><?= $this->translate('Remove'); ?></th>
<th><?= $this->translate('Resource') ?></th>
<th style="width: 5em"><?= $this->translate('Remove') ?></th>
</thead>
<tbody>
<?php foreach ($this->resources as $name => $value): ?>
Expand Down Expand Up @@ -45,7 +45,7 @@
'icon' => $icon,
'title' => sprintf($this->translate('Edit resource %s'), $name)
)
); ?>
) ?>
</td>
<td>
<center>
Expand All @@ -57,11 +57,11 @@
'icon' => 'trash',
'title' => sprintf($this->translate('Remove resource %s'), $name)
)
); ?>
) ?>
</center>
</td>
</tr>
<?php endforeach; ?>
<?php endforeach ?>
</tbody>
</table>
</div>

0 comments on commit 79c11b2

Please sign in to comment.