N°5784 - Fix ormPassword::IsEmpty() using the wrong class property

This commit is contained in:
Molkobain
2023-03-08 09:36:52 +01:00
parent 03ac3d4e7c
commit 0c3cdb202b

View File

@@ -66,7 +66,7 @@ class ormPassword
public function IsEmpty()
{
return ($this->m_hashed == null);
return ($this->m_sHashed == null);
}
public function GetHash()