From 624dae23c15ebafaa5aeb9de7403e9ca46187dce Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Tue, 23 Jun 2020 18:37:04 +0200 Subject: [PATCH] =?UTF-8?q?10.2.dev40=20theme=20menu=20active=20textcolor?= =?UTF-8?q?=20non=20d=C3=A9finie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/core/core.php b/core/core.php index d926dc0d..02eb1132 100755 --- a/core/core.php +++ b/core/core.php @@ -39,7 +39,7 @@ class common { const ACCESS_TIMER = 1800; // Numéro de version - const ZWII_VERSION = '10.2.00.dev39'; + const ZWII_VERSION = '10.2.00.dev40'; const ZWII_UPDATE_CHANNEL = "v10"; public static $actions = []; @@ -1332,6 +1332,11 @@ class common { $this->setData(['theme','footer','displayMemberAccount',false]); $this->setData(['theme','footer','displayMemberLogout',false]); $this->setData(['core', 'dataVersion', 10200]); + // Thème Menu : couleur de page active non définie + if (!$this->getData(['theme','menu','activeTextColor']) ) { + $this->setData(['theme','menu','activeTextColor', $this->getData(['theme','menu','textColor']) ]); + } + } } }