mikuli.cz

:)
git clone https://git.sr.ht/~ashymad/mikuli.cz
Log | Files | Refs

commit a185d0f9487732eccbabae221cf860782e2a7c5a
parent 7704573428a50e93c1956269bccf67733e97e11a
Author: markseu <mark2011@mayberg.se>
Date:   Fri, 13 Nov 2020 20:51:43 +0100

Better handling of old settings, thanks Steffen

Diffstat:
Msystem/extensions/update-current.ini | 4++--
Msystem/extensions/update.php | 4+++-
2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/system/extensions/update-current.ini b/system/extensions/update-current.ini @@ -89,11 +89,11 @@ system/themes/stockholm-opensans-light.woff: stockholm-opensans-light.woff, crea system/themes/stockholm-opensans-regular.woff: stockholm-opensans-regular.woff, create, update, careful Extension: Update -Version: 0.8.42 +Version: 0.8.43 Description: Keep your website up to date. HelpUrl: https://github.com/datenstrom/yellow-extensions/tree/master/source/update DownloadUrl: https://github.com/datenstrom/yellow-extensions/raw/master/zip/update.zip -Published: 2020-11-04 15:46:24 +Published: 2020-11-13 20:47:06 Developer: Datenstrom Tag: feature system/extensions/update.php: update.php, create, update diff --git a/system/extensions/update.php b/system/extensions/update.php @@ -2,7 +2,7 @@ // Update extension, https://github.com/datenstrom/yellow-extensions/tree/master/source/update class YellowUpdate { - const VERSION = "0.8.42"; + const VERSION = "0.8.43"; const PRIORITY = "2"; public $yellow; // access to API public $updates; // number of updates @@ -176,6 +176,8 @@ class YellowUpdate { $this->yellow->log("info", "Convert settings files"); } $this->yellow->system->load("system/extensions/yellow-system.ini"); + $this->yellow->user->load("system/extensions/yellow-user.ini"); + $this->yellow->language->load("system/extensions/yellow-language.ini"); $this->yellow->page->error(503, "Flux capacitor is charging to 1.21 gigawatt, please reload page!"); } }