From 23e122f0f21e4b9424e6845e1d1492f30470f23f Mon Sep 17 00:00:00 2001 From: fredtempez Date: Sat, 17 Aug 2019 18:35:44 +0200 Subject: [PATCH] [9.2.05] petites modifications + change --- CHANGES.md | 4 ++++ core/core.php | 32 ++++++++++++++++---------------- 2 files changed, 20 insertions(+), 16 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index fce2dff8..0bb45e79 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # Changelog +## Version 9.2.05 +- Correction : + - Suppression totale de Swiper (dossier source et template Tinymce) + ## Version 9.2.04 - Correction : - Conserver htaccess dans le dossier temp lors du nettoyage diff --git a/core/core.php b/core/core.php index e9bd176e..737027d0 100644 --- a/core/core.php +++ b/core/core.php @@ -838,44 +838,44 @@ class common { if($this->getData(['core', 'dataVersion']) < 826) { $this->setData(['theme','header','linkHome',true]); $this->setData(['core', 'dataVersion', 826]); - $this->SaveData(); + $this->saveData(); } // Version 8.3.1 if($this->getData(['core', 'dataVersion']) < 831) { $this->setData(['theme','header','imageContainer','auto']); $this->setData(['core', 'dataVersion', 831]); - $this->SaveData(); + $this->saveData(); } // Version 8.4.0 if($this->getData(['core', 'dataVersion']) < 840) { $this->setData(['config','itemsperPage',10]); $this->setData(['core', 'dataVersion', 840]); - $this->SaveData(); + $this->saveData(); } // Version 8.4.4 if($this->getData(['core', 'dataVersion']) < 844) { $this->setData(['core', 'dataVersion', 844]); - $this->SaveData(); + $this->saveData(); } // Version 8.4.6 if($this->getData(['core', 'dataVersion']) < 846) { $this->setData(['config','itemsperPage',10]); $this->setData(['core', 'dataVersion', 846]); - $this->SaveData(); + $this->saveData(); } // Version 8.5.0 if($this->getData(['core', 'dataVersion']) < 850) { $this->setData(['theme','menu','font','Open+Sans']); $this->setData(['core', 'dataVersion', 850]); - $this->SaveData(); + $this->saveData(); } // Version 8.5.1 if($this->getData(['core', 'dataVersion']) < 851) { $this->setData(['config','itemsperPage',10]); $this->deleteData(['config','ItemsperPage']); $this->setData(['core', 'dataVersion', 851]); - $this->SaveData(); + $this->saveData(); } // Version 9.0.0 if($this->getData(['core', 'dataVersion']) < 9000) { @@ -885,13 +885,13 @@ class common { } $this->setData(['theme', 'menu','fixed',false]); $this->setData(['core', 'dataVersion', 9000]); - $this->SaveData(); + $this->saveData(); } // Version 9.0.01 if($this->getData(['core', 'dataVersion']) < 9001) { $this->deleteData(['config', 'social', 'googleplusId']); $this->setData(['core', 'dataVersion', 9001]); - $this->SaveData(); + $this->saveData(); } // Version 9.0.08 if($this->getData(['core', 'dataVersion']) < 9008) { @@ -900,7 +900,7 @@ class common { $this->setData(['theme', 'footer', 'fontSize','.8em']); $this->setData(['theme', 'footer', 'font','Open+Sans']); $this->setData(['core', 'dataVersion', 9008]); - $this->SaveData(); + $this->saveData(); } // Version 9.0.09 if($this->getData(['core', 'dataVersion']) < 9009) { @@ -911,20 +911,20 @@ class common { if($this->getData(['core', 'dataVersion']) < 9010) { $this->deleteData(['config', 'social', 'googleplusId']); $this->setData(['core', 'dataVersion', 9010]); - $this->SaveData(); + $this->saveData(); } // Version 9.0.11 if($this->getData(['core', 'dataVersion']) < 9011) { if ($this->getData(['theme','menu','position']) === 'body') $this->setData(['theme','menu','position','site']); $this->setData(['core', 'dataVersion', 9011]); - $this->SaveData(); + $this->saveData(); } // Version 9.0.17 if($this->getData(['core', 'dataVersion']) < 9017) { $this->setData(['theme','footer','displayVersion', true ]); $this->setData(['core', 'dataVersion', 9017]); - $this->SaveData(); + $this->saveData(); } // Version 9.1.0 if($this->getData(['core', 'dataVersion']) < 9100) { @@ -932,7 +932,7 @@ class common { $this->setData(['theme','footer','displaySiteMap', true ]); $this->setData(['theme','footer','displayCopyright', true ]); $this->setData(['core', 'dataVersion', 9100]); - $this->SaveData(); + $this->saveData(); } // Version 9.2.00 if($this->getData(['core', 'dataVersion']) < 9200) { @@ -942,7 +942,7 @@ class common { $this->setData(['theme','footer','displaySearch', false ]); $this->setData(['config','social','githubId', '' ]); $this->setData(['core', 'dataVersion', 9200]); - $this->SaveData(); + $this->saveData(); } // Version 9.2.05 if($this->getData(['core', 'dataVersion']) < 9205) { @@ -959,7 +959,7 @@ class common { rmdir ('core/vendor/swiper/'); } $this->setData(['core', 'dataVersion', 9205]); - $this->SaveData(); + $this->saveData(); } } }