mirror of
https://github.com/Karaka-Management/oms-ResearchDevelopment.git
synced 2026-02-12 11:08:41 +00:00
Fix increment to pre-increment
This commit is contained in:
parent
2f578babfe
commit
4f500dde55
|
|
@ -38,7 +38,7 @@ echo $this->getData('nav')->render(); ?>
|
||||||
<tfoot>
|
<tfoot>
|
||||||
<tr><td colspan="5">
|
<tr><td colspan="5">
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php $c = 0; foreach ([] as $key => $value) : $c++;
|
<?php $c = 0; foreach ([] as $key => $value) : ++$c;
|
||||||
$url = \phpOMS\Uri\UriFactory::build('{/prefix}checklist/single?{?}&id=' . $value->getId()); ?>
|
$url = \phpOMS\Uri\UriFactory::build('{/prefix}checklist/single?{?}&id=' . $value->getId()); ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td><a href="<?= $url; ?>"><?= $this->printHtml($value->getId()); ?></a>
|
<td><a href="<?= $url; ?>"><?= $this->printHtml($value->getId()); ?></a>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user