diff --git a/CHANGES.md b/CHANGES.md index f09fae78..c3fdab91 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,10 @@ # Changelog +## version 9.2.20 +- Corrections : + - Footer / Texte personnalisé : problème d'alignement des colonnes + - Variable non déclarée dans main.php provoquant un warning + ## version 9.2.19 - Corrections : - CSS : marge bouton InputDelete. diff --git a/core/core.php b/core/core.php index 3b5c1f11..adb18aff 100644 --- a/core/core.php +++ b/core/core.php @@ -33,7 +33,7 @@ class common { const TEMP_DIR = 'site/tmp/'; // Numéro de version - const ZWII_VERSION = '9.2.19'; + const ZWII_VERSION = '9.2.20'; public static $actions = []; public static $coreModuleIds = [ diff --git a/core/layout/common.css b/core/layout/common.css index e96b3c16..8bf683af 100755 --- a/core/layout/common.css +++ b/core/layout/common.css @@ -640,6 +640,12 @@ footer #footerbody > div { font-size: inherit; } +/* Corrige le problème des
dans les col du texte personnalisé */ +#footerText div { + display: inline-flex; + float: left; +} + /* Conserve le pied de page sur une ligne */ @media (max-width: 768px) { body > footer { diff --git a/core/layout/main.php b/core/layout/main.php index e233d7e7..facdcd14 100755 --- a/core/layout/main.php +++ b/core/layout/main.php @@ -210,7 +210,9 @@ $this->getData(['theme', 'footer', 'position']) === 'hide' AND $this->getUrl(0) === 'theme' ) - ) { $position = 'site'; } else { + ) { $position = 'site'; + $positionFixed = ''; + } else { $position = 'body'; if ( $this->getData(['theme', 'footer', 'fixed']) === true) { $positionFixed = 'footerbodyFixed';