X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=ff3b6b536257779057e65ef59cb7a833e7826078;hb=b227d65dfc086c4d61e471360c09a34abf21a301;hp=82f4fba58bc847c106cd72f6a9a5f03434aedfc7;hpb=83e34ef8e7f2e36cd98cfa754e524fcc18b9a5ec;p=friendica.git diff --git a/update.php b/update.php index 82f4fba58b..ff3b6b5362 100644 --- a/update.php +++ b/update.php @@ -982,7 +982,7 @@ function update_1429() return Update::FAILED; } - DI::config()->set('system', 'post_update_version', 1423); + DI::keyValue()->set('post_update_version', 1423); return Update::SUCCESS; } @@ -1145,3 +1145,23 @@ function update_1502() DBA::e("UPDATE `pconfig` SET `cat` = 'calendar' WHERE `k` = 'first_day_of_week'"); return Update::SUCCESS; } + +function update_1505() +{ + $conditions = [ + "(`cat` = ?) AND ((`k` LIKE ?) OR (`k` = ?) OR (`k` LIKE ?) OR (`k` = ?))", + "system", + "post_update_%", + "worker_last_cleaned", + "last%", + "worker_daemon_mode", + ]; + + $postUpdateEntries = DBA::selectToArray('config', ['k', 'v'], $conditions); + + foreach ($postUpdateEntries as $postUpdateEntry) { + DI::keyValue()->set($postUpdateEntry['k'], $postUpdateEntry['v']); + } + + return DBA::delete('config', $conditions) ? Update::SUCCESS : Update::FAILED; +}