From 613d048fcca27c131e14f3a907f247b1d412b1f8 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Tue, 8 Feb 2022 12:26:56 +0100 Subject: [PATCH] identification des li dans le menu --- core/core.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core.php b/core/core.php index d7b6d6c3..b9ede07f 100644 --- a/core/core.php +++ b/core/core.php @@ -1659,7 +1659,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 - $itemsLeft .= '
  • '; + $itemsLeft .= '
  • '; if ( ( $this->getData(['page',$parentPageId,'disable']) === true AND $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD') @@ -1722,7 +1722,7 @@ class common { $active = ($childKey === $currentPageId) ? 'active ' : ''; $targetBlank = $this->getData(['page', $childKey, 'targetBlank']) ? ' target="_blank"' : ''; // Mise en page du sous-item - $itemsLeft .= '
  • '; + $itemsLeft .= '
  • '; if ( ( $this->getData(['page',$childKey,'disable']) === true AND $this->getUser('password') !== $this->getInput('ZWII_USER_PASSWORD') ) OR (