From ff060094e0b273d4f7df2caa4b553efc0e396466 Mon Sep 17 00:00:00 2001 From: fredtempez Date: Sun, 22 Dec 2019 18:11:56 +0100 Subject: [PATCH] =?UTF-8?q?[9.2.16]=20export=20:=20stocke=20la=20r=C3=A9?= =?UTF-8?q?=C3=A9criture=20dans=20la=20baseurl?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/core/core.php b/core/core.php index 760e1471..8180e8e1 100644 --- a/core/core.php +++ b/core/core.php @@ -1039,6 +1039,13 @@ class common { $this->setData(['theme','menu','burgerTitle',true]); $this->setData(['core', 'dataVersion', 9215]); } + // Version 9.2.16 + if($this->getData(['core', 'dataVersion']) < 9216) { + // Utile pour l'installation d'un backup sur un autre serveur + // mais avec la réécriture d'URM + $this->setData(['core', 'baseUrl', helper::baseUrl(true,false) ]); + $this->setData(['core', 'dataVersion', 9216]); + } } }