Fix relative path

This commit is contained in:
Dennis Eichhorn 2019-02-11 17:24:35 +01:00
parent c647a5338c
commit ebdc8ac44a
2 changed files with 2 additions and 2 deletions

View File

@ -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>

View File

@ -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>