aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMax Kostikov <max@kostikov.co>2021-02-20 14:47:14 +0100
committerMax Kostikov <max@kostikov.co>2021-02-20 14:47:14 +0100
commitb401869d30791a9b898b5a061ed6347249576e45 (patch)
treefa68acad2f8377ab8d4f4438d79b11bb8fd48707 /Zotlabs
parentcc5571687971ddcc097abb5e5c57689005d5b070 (diff)
downloadvolse-hubzilla-b401869d30791a9b898b5a061ed6347249576e45.tar.gz
volse-hubzilla-b401869d30791a9b898b5a061ed6347249576e45.tar.bz2
volse-hubzilla-b401869d30791a9b898b5a061ed6347249576e45.zip
Rename photo storage type system variable
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Update/_1243.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/Zotlabs/Update/_1243.php b/Zotlabs/Update/_1243.php
new file mode 100644
index 000000000..b3098c16e
--- /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;
+ }
+
+}