diff options
author | Mario <mario@mariovavti.com> | 2021-02-23 10:02:16 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-23 10:02:16 +0000 |
commit | 135305d975c2d314843df108f4ae558376936c6b (patch) | |
tree | f7bda22dca8b065fe11980ffb72a64496ec55257 | |
parent | 28fe91dfa7e3a2afd7b97cbc8e8ea6a93493494b (diff) | |
parent | 34aa8ba3ccba00d86d481663cef28e6d422ffbe3 (diff) | |
download | volse-hubzilla-135305d975c2d314843df108f4ae558376936c6b.tar.gz volse-hubzilla-135305d975c2d314843df108f4ae558376936c6b.tar.bz2 volse-hubzilla-135305d975c2d314843df108f4ae558376936c6b.zip |
Merge branch 'dev' into 'dev'
Rename photo storage type system variable
See merge request hubzilla/core!1911
-rw-r--r-- | Zotlabs/Update/_1243.php | 17 | ||||
-rw-r--r-- | boot.php | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/Zotlabs/Update/_1243.php b/Zotlabs/Update/_1243.php new file mode 100644 index 000000000..850cb1d6c --- /dev/null +++ b/Zotlabs/Update/_1243.php @@ -0,0 +1,17 @@ +<?php + +namespace Zotlabs\Update; + +class _1243 { + + function run() { + + $x = get_config('system','filesystem_storage_thumbnails'); + del_config('system','filesystem_storage_thumbnails'); + if ($x !== false) + set_config('system','photo_storage_type', intval($x)); + + return UPDATE_SUCCESS; + } + +} @@ -55,7 +55,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' ); define ( 'STD_VERSION', '5.3.4' ); define ( 'ZOT_REVISION', '6.0' ); -define ( 'DB_UPDATE_VERSION', 1242 ); +define ( 'DB_UPDATE_VERSION', 1243 ); define ( 'PROJECT_BASE', __DIR__ ); |