X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=9af01fd0fe36fbe2d460f30ad590ef19ea52a1eb;hb=8050389d3219f8ae7faf15a3dc2355fd54cdf88d;hp=59340eed83c84dfe7281048e7145d5f61964b2a8;hpb=e9861b11f3fd599d2491612dbb538fd008da4a40;p=friendica.git diff --git a/update.php b/update.php index 59340eed83..9af01fd0fe 100644 --- a/update.php +++ b/update.php @@ -62,6 +62,7 @@ use Friendica\Model\User; use Friendica\Protocol\Activity; use Friendica\Protocol\Delivery; use Friendica\Security\PermissionSet\Repository\PermissionSet; +use Friendica\Util\DateTimeFormat; // Post-update script of PR 5751 function update_1298() @@ -1377,3 +1378,15 @@ function update_1525(): int return Update::SUCCESS; } + +function update_1531() +{ + $threads = Post::selectThread(Item::DELIVER_FIELDLIST, ["`uid` = ? AND `created` > ?", 0, DateTimeFormat::utc('now - ' . DI::config()->get('channel', 'engagement_hours') . ' hour')]); + while ($post = Post::fetch($threads)) { + $post['gravity'] = Item::GRAVITY_COMMENT; + Post\Engagement::storeFromItem($post); + } + DBA::close($threads); + + return Update::SUCCESS; +} \ No newline at end of file