diff --git a/core/core.php b/core/core.php index f6506cce..810b5f0b 100755 --- a/core/core.php +++ b/core/core.php @@ -1241,8 +1241,8 @@ class common { $this->setData(['core', 'dataVersion', 10000]); } // Version 10.0.092 - if($this->getData(['core', 'dataVersion']) < 10092) { - // Suppression du dosseir fullpage + if ($this->getData(['core', 'dataVersion']) < 10092) { + // Suppression du dossier fullpage if (is_dir('core/vendor/fullpage')) { $dir = getcwd(); chdir('core/vendor/fullpage'); @@ -1251,6 +1251,10 @@ class common { chdir($dir); rmdir ('core/vendor/fullpage/'); } + if (file_exists('core/vendor/tinymce/templates/fullPageSections.html')) { + unlink ('core/vendor/tinymce/templates/fullPageSections.html'); } + if (file_exists('core/vendor/tinymce/templates/fullPageSlides.html')) { + unlink ('core/vendor/tinymce/templates/fullPageSlides.html'); } $this->setData(['core', 'dataVersion', 10092]); } diff --git a/core/vendor/tinymce/templates/fullPageSections.html b/core/vendor/tinymce/templates/fullPageSections.html deleted file mode 100644 index 7d4962d1..00000000 --- a/core/vendor/tinymce/templates/fullPageSections.html +++ /dev/null @@ -1,6 +0,0 @@ -
-
Section 1
-
Section 2
-
Section 3
-
Section 4
-
\ No newline at end of file diff --git a/core/vendor/tinymce/templates/fullPageSlides.html b/core/vendor/tinymce/templates/fullPageSlides.html deleted file mode 100644 index 628251d4..00000000 --- a/core/vendor/tinymce/templates/fullPageSlides.html +++ /dev/null @@ -1,8 +0,0 @@ -
-
-
Slide 1
-
Slide 2
-
Slide 3
-
Slide 4
-
-
\ No newline at end of file