Corrects falsely blocked contacts because of some bug in the develop branch
This commit is contained in:
parent
8612e44d19
commit
aafc314ccc
2 changed files with 7 additions and 1 deletions
2
boot.php
2
boot.php
|
@ -41,7 +41,7 @@ define('FRIENDICA_PLATFORM', 'Friendica');
|
|||
define('FRIENDICA_CODENAME', 'The Tazmans Flax-lily');
|
||||
define('FRIENDICA_VERSION', '2018.05-rc');
|
||||
define('DFRN_PROTOCOL_VERSION', '2.23');
|
||||
define('DB_UPDATE_VERSION', 1260);
|
||||
define('DB_UPDATE_VERSION', 1261);
|
||||
define('NEW_UPDATE_ROUTINE_VERSION', 1170);
|
||||
|
||||
/**
|
||||
|
|
|
@ -227,3 +227,9 @@ function update_1260() {
|
|||
Config::set('system', 'maintenance', 0);
|
||||
return UPDATE_SUCCESS;
|
||||
}
|
||||
|
||||
function update_1261() {
|
||||
// This fixes the results of an issue in the develop branch of 2018-05.
|
||||
dba::update('contact', ['blocked' => false, 'pending' => false], ['uid' => 0, 'blocked' => true, 'pending' => true]);
|
||||
return UPDATE_SUCCESS;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue