[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 - Mise en page petits écrans, modification des marges
- Configuration du site : scripts dans header et body - Configuration du site : scripts dans header et body
- Nouvel écran de configuration - Nouvel écran de configuration
- Ajoute de la compression gzip et deflate dans htaccess
- Corrections : - Corrections :
- Déclaration de localisation manquante dans mail.php - Déclaration de localisation manquante dans mail.php
- Bug avec le formulaire
- Désactivation direct upload dans RFM
## Version 9.1.08 ## Version 9.1.08
- Corrections : - Corrections :

View File

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