From 79c11b293b7c8bf890636de9bde12a6d8f3b83ea Mon Sep 17 00:00:00 2001 From: Eric Lippmann <eric.lippmann@netways.de> Date: Wed, 30 Sep 2015 11:20:35 +0200 Subject: [PATCH] Remove trailing semicolons from inline echo tags in config/resource refs #5543 --- application/views/scripts/config/resource.phtml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/application/views/scripts/config/resource.phtml b/application/views/scripts/config/resource.phtml index 7a28d2238..1be94cd6a 100644 --- a/application/views/scripts/config/resource.phtml +++ b/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): ?> @@ -45,7 +45,7 @@ 'icon' => $icon, 'title' => sprintf($this->translate('Edit resource %s'), $name) ) - ); ?> + ) ?> </td> <td> <center> @@ -57,11 +57,11 @@ 'icon' => 'trash', 'title' => sprintf($this->translate('Remove resource %s'), $name) ) - ); ?> + ) ?> </center> </td> </tr> - <?php endforeach; ?> + <?php endforeach ?> </tbody> </table> </div>