From 6e774a58fe6c509e2cd16d222ed414edc9f10b17 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 6 Feb 2021 00:12:15 +0300 Subject: more php8 fixes mostly related to login --- plugins/auth_internal/init.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/auth_internal') diff --git a/plugins/auth_internal/init.php b/plugins/auth_internal/init.php index 0ad3e9436..134d3b45e 100644 --- a/plugins/auth_internal/init.php +++ b/plugins/auth_internal/init.php @@ -22,7 +22,7 @@ class Auth_Internal extends Plugin implements IAuthModule { $pwd_hash1 = encrypt_password($password); $pwd_hash2 = encrypt_password($password, $login); - $otp = (int)$_REQUEST["otp"]; + $otp = (int) ($_REQUEST["otp"] ?? 0); if (get_schema_version() > 96) { -- cgit v1.2.3-54-g00ecf