[9.1.09] changes + commentaires dans sitemap

This commit is contained in:
fredtempez 2019-06-09 15:41:36 +02:00
parent 15d6243747
commit 867c1af1b1
2 changed files with 7 additions and 2 deletions

View File

@ -5,8 +5,12 @@
- Mise en page petits écrans, modification des marges
- Configuration du site : scripts dans header et body
- Nouvel écran de configuration
- Ajoute de la compression gzip et deflate dans htaccess
- Corrections :
- Déclaration de localisation manquante dans mail.php
- Bug avec le formulaire
- Désactivation direct upload dans RFM
## Version 9.1.08
- Corrections :

View File

@ -7,6 +7,7 @@
<a href="<?php echo helper::baseUrl() . $parentId; ?>"><?php echo $this->getData(['page', $parentId, 'title']); ?></a>
<?php
} else {
// page désactivée
echo $this->getData(['page', $parentId, 'title']);
} ?>
<ul>
@ -17,6 +18,7 @@
{ ?>
<a href="<?php echo helper::baseUrl() . $childId; ?>"><?php echo $this->getData(['page', $childId, 'title']); ?></a>
<?php } else { ?>
<!-- page désactivée -->
<?php echo $this->getData(['page', $childId, 'title']); }?>
<!-- articles d'une sous-page blog-->
@ -31,7 +33,6 @@
<?php endforeach;
} ?>
</ul>
<!-- -->
</li>
<?php endforeach; ?>
<!-- ou articles d'un blog-->
@ -40,7 +41,7 @@
<?php
foreach($this->getData(['module',$parentId]) as $articleId => $article): ?>
<li>
<a href="<?php echo helper::baseUrl() . $parentId . '/' . $articleId;?>"><?php echo $article['title']; ?></a>
<a href="<?php echo helper::baseUrl() . $parentId. '/' . $articleId;?>"><?php echo $article['title']; ?></a>
</li>
<?php endforeach;
} ?>