diff --git a/core/core.php b/core/core.php index 660f03c3..c97d46c8 100644 --- a/core/core.php +++ b/core/core.php @@ -34,7 +34,7 @@ class common { const TEMP_DIR = 'site/tmp/'; // Numéro de version - const ZWII_VERSION = '10.0.019.dev'; + const ZWII_VERSION = '10.0.020.dev'; public static $actions = []; public static $coreModuleIds = [ diff --git a/core/module/config/config.php b/core/module/config/config.php index 48741483..f4436cf3 100755 --- a/core/module/config/config.php +++ b/core/module/config/config.php @@ -475,7 +475,7 @@ class config extends common { // Récuperer les données // Les contrôles ont été effectués sur la page de formulaire $old = $this->getData(['core', 'baseUrl']); - $new = helper::baseUrl(false,false); + $new = helper::baseUrl(true,false); // Boucler sur les pages foreach($this->getHierarchy(null,null,null) as $parentId => $childIds) { $content = $this->getData(['page',$parentId,'content']); @@ -487,7 +487,7 @@ class config extends common { $this->setData(['page',$childId,'content', $replace ]); } } - $this->setData(['core','baseUrl',helper::baseUrl(false,false)]); + $this->setData(['core','baseUrl',helper::baseUrl(true,false)]); // Valeurs en sortie $this->addOutput([ 'title' => 'Sauvegarder / Restaurer', diff --git a/core/module/config/view/manage/manage.php b/core/module/config/view/manage/manage.php index 964a864d..468a4200 100644 --- a/core/module/config/view/manage/manage.php +++ b/core/module/config/view/manage/manage.php @@ -69,10 +69,10 @@ $buttonClass = 'disabled'; } elseif ($this->getData(['core', 'baseUrl']) === '') { $baseUrlValue = '/'; - $buttonClass = (helper::baseUrl(false,false) !== $this->getData(['core', 'baseUrl']) ) ? '' : 'disabled'; + $buttonClass = (helper::baseUrl(true,false) !== $this->getData(['core', 'baseUrl']) ) ? '' : 'disabled'; } else { $baseUrlValue = $this->getData(['core', 'baseUrl']); - $buttonClass = (helper::baseUrl(false,false) !== $this->getData(['core', 'baseUrl']) ) ? '' : 'disabled'; + $buttonClass = (helper::baseUrl(true,false) !== $this->getData(['core', 'baseUrl']) ) ? '' : 'disabled'; } echo template::text('configManageBaseURLToConvert', [ 'label' => 'Dossier d\'installation de l\'archive' , @@ -84,7 +84,7 @@
'Dossier du site actuel', - 'value' => helper::baseUrl(false,false), + 'value' => helper::baseUrl(true,false), 'readonly' => true, 'help' => 'Dossier du site installé.' ]); ?>