Skip to content

Commit

Permalink
Remove Trailing Semicolon on Short Echo PHP Tags
Browse files Browse the repository at this point in the history
No need for these tags

Signed-off-by: Justin Yost <justin@loadsys.com>
  • Loading branch information
justinyost committed May 27, 2016
1 parent b342f82 commit c16c410
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Template/Sitemaps/index.ctp
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@
<?php foreach($dataForKey as $record): ?>
<tr>
<td>
<?= h($record->_loc); ?>
<?= h($record->_loc) ?>
</td>
<td>
<?= h($record->_priority); ?>
<?= h($record->_priority) ?>
</td>
<td>
<?= h($record->_changefreq); ?>
<?= h($record->_changefreq) ?>
</td>
<td>
<?= h($record->_lastmod); ?>
<?= h($record->_lastmod) ?>
</td>
</tr>
<?php endforeach; ?>
Expand Down

0 comments on commit c16c410

Please sign in to comment.