X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=672c11a4f49097342f8a3d78fd16074ab6ce7ad7;hb=131695cb1167a831dbe87a0f2b1bde755dabd55f;hp=15ef8b1dc0194e401ecf8f56f0d7164aa92304d7;hpb=711135a85ba1a139a8d9ffb0dd29e2ef3694b69a;p=friendica.git diff --git a/update.php b/update.php index 15ef8b1dc0..672c11a4f4 100644 --- a/update.php +++ b/update.php @@ -1295,3 +1295,23 @@ 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; +}