1
0
Fork 0

Set intro.blocked to deprecated

This commit is contained in:
Philipp Holzer 2021-10-19 21:30:09 +02:00
commit ed184bd592
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
7 changed files with 14 additions and 14 deletions

View file

@ -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;
}