diff --git a/core/core.php b/core/core.php index fa2c5868..f65324db 100644 --- a/core/core.php +++ b/core/core.php @@ -31,7 +31,7 @@ class common { const TEMP_DIR = 'site/tmp/'; // Numéro de version - const ZWII_VERSION = '10.0.59.dev'; + const ZWII_VERSION = '10.0.60.dev'; public static $actions = []; public static $coreModuleIds = [ @@ -2639,8 +2639,8 @@ class layout extends common { ($parentPageId === $currentPageId ? ' selected' : false) . ($this->getData(['page', $parentPageId, 'disable']) === true ? ' class="inactive"' : '') . '>' . - $this->getData(['page', $parentPageId, 'title']) . - ''; + $this->getData(['page', $parentPageId, 'title']); + $leftItems .= $this->getData(['page',$parentPageId,'homePageId']) === true ? ' (A)' : ''; foreach($childrenPageIds as $childKey) { $leftItems .= ''; + $this->getData(['page', $childKey, 'title']) ; + $leftItems .= $this->getData(['page',$childKey,'homePageId']) === true ? ' ⊕' : ''; } } }