From 1d93f106024a7cff1d76eb198bd9ab3cec3cad8f Mon Sep 17 00:00:00 2001 From: Fred Tempez Date: Mon, 2 Mar 2020 13:14:19 +0100 Subject: [PATCH] =?UTF-8?q?appels=20=C3=A0=20Savedata()=20supprim=C3=A9s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/core/core.php b/core/core.php index b416a2fd..b431645d 100644 --- a/core/core.php +++ b/core/core.php @@ -1060,7 +1060,6 @@ class common { } } $this->setData(['core', 'dataVersion', 9210]); - //$this->SaveData(); } // Version 9.2.11 if($this->getData(['core', 'dataVersion']) < 9211) { @@ -1068,7 +1067,6 @@ class common { $this->setData(['core', 'lastAutoUpdate', $autoUpdate]); $this->setData(['config','autoUpdate', true]); $this->setData(['core', 'dataVersion', 9211]); - //$this->SaveData(); } // Version 9.2.12 if($this->getData(['core', 'dataVersion']) < 9212) { @@ -1106,13 +1104,11 @@ class common { $this->setData(['config', 'proxyPort', '' ]); $this->setData(['config', 'proxyType', 'tcp://' ]); $this->setData(['core', 'dataVersion', 9223]); - $this->saveData(); } // Version 10.0.00 if($this->getData(['core', 'dataVersion']) < 10000) { $this->setData(['config', 'faviconDark','faviconDark.ico']); $this->setData(['core', 'dataVersion', 10000]); - $this->saveData(); } } }