-
-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Closed
Description
Line 77 in 9e82562
if ('' === $password) { |
We found an Issue with this Line. If removing the password input field in the DOM Symfony gets a null here. But NULL compared to '' is not true - so it seems okay and throws no Error.
Checking the password with an "empty($password) === true)" solves the Issue.