From 32f56023aec9ec8f8faa1dd0881d6a3a055dcd51 Mon Sep 17 00:00:00 2001 From: Alexandre SPANGARO Date: Mon, 6 May 2024 16:10:19 +0200 Subject: [PATCH] Fix deployment from another customdir --- CHANGELOG.md | 1 + admin/about.php | 2 +- core/modules/modOblyon.class.php | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85c78fd..b7640fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ### Version 3.0.2 - Compatibility 14.0.x - 20-alpha (2024/05/01) - Update ckeditor configuration +- Fix deployment from another customdir ### Version 3.0.1 - Compatibility 14.0.x - 20-alpha (2024/04/29) - Fix problem with function Show company name in invert menu (Remove function for the moment) diff --git a/admin/about.php b/admin/about.php index bc67c66..c90c8b0 100644 --- a/admin/about.php +++ b/admin/about.php @@ -77,7 +77,7 @@ //print '' . $langs->trans("Authors") . ''; //print ''."\n"; -// Easya Solutions +// Inovea print ''; print '
'; print ''; diff --git a/core/modules/modOblyon.class.php b/core/modules/modOblyon.class.php index e310b27..d378f78 100644 --- a/core/modules/modOblyon.class.php +++ b/core/modules/modOblyon.class.php @@ -110,8 +110,8 @@ function init($options = '') $sql = array(); $this->_load_tables('/'.$this->name.'/sql/'); oblyon_restore_module($this->name); - // Copy dir custom/oblyon/themeoblyon to theme/oblyon - $srcDir = dol_buildpath('/custom/oblyon/themeoblyon'); + // Copy dir oblyon/themeoblyon to theme/oblyon + $srcDir = dol_buildpath('/oblyon/themeoblyon'); $destDir = DOL_DOCUMENT_ROOT.'/theme/oblyon'; if (dol_is_dir($destDir)) { $result = dol_delete_dir_recursive($destDir);