Skip to content

v1.3.2

Compare
Choose a tag to compare
@ngoerlitz ngoerlitz released this 01 Feb 22:17
· 3 commits to main since this release

Updates the check to determine if a user is allowed to use a functional account. This disables login for the "service" accounts XF Support Admin and VATSIM Migration, which are not to be used as functional accounts.

Before:

array_find_key(self::$DISALLOWED_FUNC_ACC, fn(string $accName) => $accName === $account->username)

After:

array_find(self::$DISALLOWED_FUNC_ACC, fn(string $accName) => $accName === $account->username) !== null