mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-05 17:51:40 +09:00
Fix warning in PHP 8.x
This commit is contained in:
parent
7bba7732d7
commit
7998adec59
1 changed files with 1 additions and 1 deletions
|
|
@ -519,7 +519,7 @@ class MemberModel extends Member
|
|||
}
|
||||
}
|
||||
|
||||
if(strlen($info->find_account_answer) == 32 && preg_match('/[a-zA-Z0-9]+/', $info->find_account_answer))
|
||||
if(strlen($info->find_account_answer ?? '') == 32 && preg_match('/[a-zA-Z0-9]+/', $info->find_account_answer ?? ''))
|
||||
{
|
||||
$info->find_account_answer = null;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue