[9.1.09] liens dans le sitemap ok

This commit is contained in:
fredtempez 2019-06-09 09:09:27 +02:00
parent 609fc0009e
commit edf988a636
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@
<?php
foreach($this->getData(['module',$childId]) as $articleId => $article): ?>
<li>
<a href="<?php echo helper::baseUrl() . $article['title'];?>"><?php echo $article['title']; ?></a>
<a href="<?php echo helper::baseUrl() . $childId . '/' . $articleId;?>"><?php echo $article['title']; ?></a>
</li>
<?php endforeach;
} ?>
@ -40,7 +40,7 @@
<?php
foreach($this->getData(['module',$parentId]) as $articleId => $article): ?>
<li>
<a href="<?php echo helper::baseUrl() . $article['title'];?>"><?php echo $article['title']; ?></a>
<a href="<?php echo helper::baseUrl() . $parentId . '/' . $articleId;?>"><?php echo $article['title']; ?></a>
</li>
<?php endforeach;
} ?>