From 2b02e058c479c0967738013e9d730f4a2d35a845 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Tue, 29 Mar 2022 13:07:31 +0200 Subject: [PATCH] =?UTF-8?q?Met=20=C3=A0=20jour=20les=20URL=20absolues?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/include/update.inc.php | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/core/include/update.inc.php b/core/include/update.inc.php index 153a9d3d..731798da 100644 --- a/core/include/update.inc.php +++ b/core/include/update.inc.php @@ -949,7 +949,6 @@ if ($this->getData(['core', 'dataVersion']) < 11400) { } } - // Rafraichir les thèmes if (file_exists(self::DATA_DIR . 'admin.css')) { unlink (self::DATA_DIR . 'admin.css'); @@ -958,6 +957,26 @@ if ($this->getData(['core', 'dataVersion']) < 11400) { unlink (self::DATA_DIR . 'theme.css'); } + // Transforme les URL en références relatives + $baseUrl = $this->getData(['core', 'baseUrl']); + $baseUrl2 = str_replace('?', '', $baseUrl); + foreach ($this->getHierarchy(null,null,null) as $parentKey=>$parentValue) { + $pageList [] = $parentKey; + foreach ($parentValue as $childKey) { + $pageList [] = $childKey; + } + } + foreach ($pageList as $parentKey => $parent) { + $s = $this->getPage( $parent, self::$i18n); + // Suppression des sous-dossiers + $s = str_replace ($baseUrl, './', $s); + $s = str_replace ($baseUrl2, './', $s); + $this->setPage( $parent, $s, self::$i18n); + } + + // Suppression de la variable URL dans core + //$this->deleteData(['core', 'baseUrl']); + // Mise à jour $this->setData(['core', 'dataVersion', 11400]); } \ No newline at end of file