X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=update.php;h=85f407d36ce223e1a2d222f967bbf7a1918638ed;hb=b4572a529376bc9e2e1c5396a4061ac499d7d7e9;hp=25e64d659a2f0504fa8639f2d18209232e716689;hpb=353cd66b269d0d926eb88223939625e548184ff2;p=friendica.git diff --git a/update.php b/update.php index 25e64d659a..85f407d36c 100644 --- a/update.php +++ b/update.php @@ -1039,7 +1039,7 @@ function update_1440() return Update::SUCCESS; } -function update__1441() +function update_1441() { $languages = DI::l10n()->getAvailableLanguages(); @@ -1053,3 +1053,11 @@ function update__1441() return Update::SUCCESS; } + +function update_1442() +{ + // transform blocked intros into ignored intros + DBA::update('intro', ['ignore' => 1, 'blocked' => 0], ['blocked' => 1]); + + return Update::SUCCESS; +}