mirror of
https://github.com/Karaka-Management/oms-Exchange.git
synced 2026-02-02 11:18:39 +00:00
Fix relative path
This commit is contained in:
parent
c647a5338c
commit
ebdc8ac44a
|
|
@ -27,7 +27,7 @@ echo $this->getData('nav')->render();
|
|||
<tr>
|
||||
<td class="wf-100"><?= $this->getHtml('Title') ?>
|
||||
<tbody>
|
||||
<?php $count = 0; foreach ($interfaces as $key => $value) : $count++;
|
||||
<?php $count = 0; foreach ($interfaces as $key => $value) : ++$count;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/lang}/backend/admin/exchange/export/profile?{?}&id=' . $value->getId()); ?>
|
||||
<tr data-href="<?= $url; ?>">
|
||||
<td data-label="<?= $this->getHtml('Title') ?>"><a href="<?= $url; ?>"><?= $this->printHtml($value->getName()); ?></a>
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ echo $this->getData('nav')->render();
|
|||
<tr>
|
||||
<td class="wf-100"><?= $this->getHtml('Title') ?>
|
||||
<tbody>
|
||||
<?php $count = 0; foreach ($interfaces as $key => $value) : $count++;
|
||||
<?php $count = 0; foreach ($interfaces as $key => $value) : ++$count;
|
||||
$url = \phpOMS\Uri\UriFactory::build('{/lang}/backend/admin/exchange/import/profile?{?}&id=' . $value->getId()); ?>
|
||||
<tr data-href="<?= $url; ?>">
|
||||
<td data-label="<?= $this->getHtml('Title') ?>"><a href="<?= $url; ?>"><?= $this->printHtml($value->getName()); ?></a>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user