mirror of
https://github.com/Karaka-Management/oms-Auditor.git
synced 2026-02-05 00:38:41 +00:00
Fix relative path
This commit is contained in:
parent
3644c721dd
commit
7c7558ba27
|
|
@ -30,7 +30,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tr>
|
||||
<td colspan="3">
|
||||
<tbody>
|
||||
<?php $count = 0; foreach ($audits as $key => $audit) : $count++;
|
||||
<?php $count = 0; foreach ($audits as $key => $audit) : ++$count;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/lang}/backend/admin/audit/single?{?}&id=' . $audit->getId()); ?>
|
||||
<tr data-href="<?= $url; ?>">
|
||||
<td>
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tr>
|
||||
<td colspan="9">
|
||||
<tbody>
|
||||
<?php $count = 0; foreach ($audits as $key => $audit) : $count++;
|
||||
<?php $count = 0; foreach ($audits as $key => $audit) : ++$count;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/lang}/backend/admin/audit/single?{?}&id=' . $audit->getId()); ?>
|
||||
<tr data-href="<?= $url; ?>">
|
||||
<td><?= $audit->getId(); ?>
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tr>
|
||||
<td colspan="3">
|
||||
<tbody>
|
||||
<?php $count = 0; foreach ($audits as $key => $audit) : $count++;
|
||||
<?php $count = 0; foreach ($audits as $key => $audit) : ++$count;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/lang}/backend/admin/audit/single?{?}&id=' . $audit->getId()); ?>
|
||||
<tr data-href="<?= $url; ?>">
|
||||
<td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user