diff --git a/CHANGES.md b/CHANGES.md
index cae70ce0..430ca18e 100755
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,6 +1,10 @@
# Changelog
+## Version 11.3.04
+### Correction :
+ - Duplication d'id dans le menu.
+
## Version 11.3.03
### Modifications :
- Suppression du thème administration dans le menu du thème.
diff --git a/README.md b/README.md
index e9bdad61..2d3d7960 100755
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# ZwiiCMS 11.3.03
+# ZwiiCMS 11.3.04
Zwii est un CMS sans base de données (flat-file) qui permet de créer et gérer facilement un site web sans aucune connaissance en programmation.
diff --git a/core/core.php b/core/core.php
index 9e72dd9f..e3decbdc 100644
--- a/core/core.php
+++ b/core/core.php
@@ -45,7 +45,7 @@ class common {
// Numéro de version
const ZWII_UPDATE_URL = 'https://forge.chapril.org/ZwiiCMS-Team/update/raw/branch/master/';
- const ZWII_VERSION = '11.3.03';
+ const ZWII_VERSION = '11.3.04';
const ZWII_UPDATE_CHANNEL = "v11";
public static $actions = [];
@@ -1714,7 +1714,7 @@ class common {
$active = ($parentPageId === $currentPageId OR in_array($currentPageId, $childrenPageIds)) ? 'active ' : '';
$targetBlank = $this->getData(['page', $parentPageId, 'targetBlank']) ? ' target="_blank"' : '';
// Mise en page de l'item
- $items .= '
';
+ $items .= '';
if ( ( $this->getData(['page',$parentPageId,'disable']) === true
AND $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
@@ -1725,10 +1725,10 @@ class common {
)
){
$pageUrl = ($this->getData(['locale', 'homePageId']) === $this->getUrl(0)) ? helper::baseUrl(false) : helper::baseUrl() . $this->getUrl(0);
- $items .= '';
+ $items .= '';
} else {
$pageUrl = ($this->getData(['locale', 'homePageId']) === $parentPageId) ? helper::baseUrl(false) : helper::baseUrl() . $parentPageId;
- $items .= '';
+ $items .= '';
}
switch ($this->getData(['page', $parentPageId, 'typeMenu'])) {
@@ -1777,7 +1777,7 @@ class common {
$active = ($childKey === $currentPageId) ? 'active ' : '';
$targetBlank = $this->getData(['page', $childKey, 'targetBlank']) ? ' target="_blank"' : '';
// Mise en page du sous-item
- $items .= '';
+ $items .= '';
if ( ( $this->getData(['page',$childKey,'disable']) === true
AND $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD')
) OR (
@@ -1787,10 +1787,10 @@ class common {
)
){
$pageUrl = ($this->getData(['locale', 'homePageId']) === $this->getUrl(0)) ? helper::baseUrl(false) : helper::baseUrl() . $this->getUrl(0);
- $items .= '';
+ $items .= '';
} else {
$pageUrl = ($this->getData(['locale', 'homePageId']) === $childKey) ? helper::baseUrl(false) : helper::baseUrl() . $childKey;
- $items .= '';
+ $items .= '';
}
switch ($this->getData(['page', $childKey, 'typeMenu'])) {