You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just hit this issue myself on 1.8.0. While PHP treats an empty string as false, in this context the outcome does not represent the intended behaviour and blocks a number of valid (and common) use cases. null, "", false, and any other falsey values should valid input for a field.
When calling the setValues function, if the array contains a key/value pair with an empty string value, the key/value pair will be filtered out.
Looking at the code, there is an issue with the array_filter call where an empty string value is treated as false.
The text was updated successfully, but these errors were encountered: