mirror of
https://github.com/Karaka-Management/oms-QA.git
synced 2026-02-07 20:08:40 +00:00
Fix increment to pre-increment
This commit is contained in:
parent
0113cc6e47
commit
74df13c9cb
|
|
@ -31,7 +31,7 @@ echo $this->getData('nav')->render();
|
|||
<tfoot>
|
||||
<tr><td colspan="2">
|
||||
<tbody>
|
||||
<?php $c = 0; foreach ($tags as $key => $value) : $c++;
|
||||
<?php $c = 0; foreach ($tags as $key => $value) : ++$c;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/prefix}admin/account/settings?{?}&id=' . $value->getId()); ?>
|
||||
<tr data-href="<?= $url; ?>">
|
||||
<td><a href="<?= $url; ?>"><?= $this->printHtml($value->getId()); ?></a>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user