Delete mod/settings.php and its reference

This commit is contained in:
Hypolite Petovan 2022-11-04 23:59:55 -04:00
parent 5916544bc8
commit e6ada08e1b
2 changed files with 3 additions and 108 deletions

View file

@ -56,9 +56,9 @@ class OpenID extends BaseModule
}
// NOTE: we search both for normalised and non-normalised form of $authid
// because the normalization step was removed from setting
// mod/settings.php in 8367cad so it might have left mixed
// records in the user table
// because the normalization step was removed from settings
// in commit 8367cadeeffec4b6792a502847304b17ceba5882, so it might
// have left mixed records in the user table
//
$condition = ['blocked' => false, 'account_expired' => false, 'account_removed' => false, 'verified' => true,
'openid' => [$authId, Strings::normaliseOpenID($authId)]];