From c3bfe2107fdfc7410d73ff9cde4a76147ddfb772 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Fri, 1 Nov 2019 18:25:13 +0100 Subject: [PATCH] =?UTF-8?q?[10.0.60.dev]=20rep=C3=A8re=20home=20page=20(ci?= =?UTF-8?q?ble)=20dans=20la=20liste=20des=20pages=20de=20la=20barre=20admi?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 ? ' ⊕' : ''; } } }