We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aae39c commit c1cd0fcCopy full SHA for c1cd0fc
app/Parvula/Models/User.php
@@ -61,7 +61,7 @@ public function __construct(array $infos) {
61
* @return bool If the password is ok
62
*/
63
public function login($password) {
64
- if (strlen($password) < 50) {
+ if (strlen($this->password) < 50) {
65
// Not hashed, TODO temporary
66
return $password === $this->password;
67
}
0 commit comments