aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-02-10 20:59:30 +0000
committerMario <mario@mariovavti.com>2021-02-10 20:59:30 +0000
commitbecdd642571d8e62e789693efbd571566f9641ed (patch)
treed9e256e549da1c6b409c6af84d8bdc40b2e8d83e
parent464a0634d63707412afb7df9b2fe0d2e23258753 (diff)
downloadvolse-hubzilla-becdd642571d8e62e789693efbd571566f9641ed.tar.gz
volse-hubzilla-becdd642571d8e62e789693efbd571566f9641ed.tar.bz2
volse-hubzilla-becdd642571d8e62e789693efbd571566f9641ed.zip
update 1242
-rw-r--r--Zotlabs/Update/_1242.php21
-rw-r--r--boot.php2
2 files changed, 22 insertions, 1 deletions
diff --git a/Zotlabs/Update/_1242.php b/Zotlabs/Update/_1242.php
new file mode 100644
index 000000000..c2c9a66d0
--- /dev/null
+++ b/Zotlabs/Update/_1242.php
@@ -0,0 +1,21 @@
+<?php
+
+namespace Zotlabs\Update;
+
+class _1242 {
+
+ function run() {
+ $p = dbq("SELECT * FROM pconfig WHERE k LIKE '%password%'");
+ foreach ($p as $pp) {
+ if ($pp['v'][0] === '{') {
+ $a = json_decode($pp['v'], true);
+ if (isset($a['encrypted'])) {
+ $v = crypto_unencapsulate($a, get_config('system', 'prvkey'));
+ set_pconfig($pp['uid'], $pp['cat'], $pp['k'], obscurify($v));
+ }
+ }
+ }
+ return UPDATE_SUCCESS;
+ }
+
+} \ No newline at end of file
diff --git a/boot.php b/boot.php
index d491a989c..1d8872257 100644
--- a/boot.php
+++ b/boot.php
@@ -55,7 +55,7 @@ define ( 'PLATFORM_NAME', 'hubzilla' );
define ( 'STD_VERSION', '5.3.4' );
define ( 'ZOT_REVISION', '6.0' );
-define ( 'DB_UPDATE_VERSION', 1241 );
+define ( 'DB_UPDATE_VERSION', 1242 );
define ( 'PROJECT_BASE', __DIR__ );