X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=3cd0a45a7b05ca64ac3ca9b48d978f9413def41c;hb=63436be80e57ddc331284708561d1733afbd88cb;hp=15ef8b1dc0194e401ecf8f56f0d7164aa92304d7;hpb=ee5acc29c3722de9b48c11fe0d6316a83f43f1de;p=friendica.git diff --git a/update.php b/update.php index 15ef8b1dc0..3cd0a45a7b 100644 --- a/update.php +++ b/update.php @@ -79,7 +79,7 @@ function update_1298() $a = new \stdClass(); $a->strings = []; - // First we get the the localizations + // First we get the localizations if (file_exists('view/lang/$lang/strings.php')) { include 'view/lang/$lang/strings.php'; } @@ -1295,3 +1295,34 @@ function update_1515() DBA::update('verb', ['name' => Activity::VIEW], ['name' => 'https://joinpeertube.org/view']); return Update::SUCCESS; } + +function update_1516() +{ + // Fixes https://github.com/friendica/friendica/issues/12803 + // de-serialize multiple serialized values + $configTrans = DI::config()->beginTransaction(); + $configArray = DI::config()->getCache()->getDataBySource(Cache::SOURCE_DATA); + + foreach ($configArray as $category => $keyValues) { + if (is_array($keyValues)) { + foreach ($keyValues as $key => $value) { + $configTrans->set($category, $key, $value); + } + } + } + + $configTrans->commit(); + + return Update::SUCCESS; +} + +function update_1518() +{ + $users = DBA::select('user', ['uid']); + while ($user = DBA::fetch($users)) { + Contact::updateSelfFromUserID($user['uid']); + } + DBA::close($users); + + return Update::SUCCESS; +}