diff --git a/.gitignore b/.gitignore index 0b6207dd..fa6a397f 100644 --- a/.gitignore +++ b/.gitignore @@ -25,7 +25,4 @@ site/file/thumb/* .htaccess .gitignore core/vendor/tinymce/link_list.json -core/vendor/tinymce/link_list.json -site/tmp/.htaccess -core/vendor/tinymce/link_list.json site/tmp/.htaccess diff --git a/CHANGES.md b/CHANGES.md index 06576b12..10b78ef9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,11 +1,13 @@ # ChangeLog - ## Version 9.0.08 -- Modification : +- Modifications : - Prise en compte taille des petits écrans, suppression des marges - - TinyMCE : désactivation du thème mobile - +- Ajouts : + - Thèmes : pied de page choix de police et de styles +- Corrections : + - TinyMCE : désactivation du thème mobile ne fonctionnait pas sur ipad et iphone + ## Version 9.0.07 - Correction : - Disparition du menu quand la bannière est masquée diff --git a/core/core.php b/core/core.php index 1d53f85a..fb95f4e6 100644 --- a/core/core.php +++ b/core/core.php @@ -29,7 +29,7 @@ class common { // Numéro de version de développement, ajouter dev: // Désactive l'update auto // Numéro de version stable - const ZWII_VERSION = '9.0.08'; + const ZWII_VERSION = '9.0.08-dev'; public static $actions = []; @@ -2358,12 +2358,19 @@ class layout extends common { helper::baseUrl() . $parentPageId . '"' . ($parentPageId === $currentPageId ? ' selected' : false) . - ($this->getData(['page', $parentPageId, 'disable']) === true ? ' class="inactive"' : false) . + ($this->getData(['page', $parentPageId, 'disable']) === true ? ' class="inactive"' : '') . '>' . $this->getData(['page', $parentPageId, 'title']) . ''; foreach($childrenPageIds as $childKey) { - $leftItems .= ''; + $leftItems .= ''; } } }