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 following up here. Looks like this is related to how PHP 7.1+ handles variables that aren't set or initialized as an array. If I change $output = ''; to $output = array(); this seems to resolve the issue.
This also solves the issue reported in #229 as far as I can tell.
One last follow-up. This is due to $output not being set or initialized as an array. Previous versions of PHP apparently handled this without issue but 7.1+ requires that the array be defined explicity.
Looks like there's an issue with the
of_sanitize_multicheck
function when running PHP 7.2.Here's what it looks like when options get saved and a multicheck is one of the fields: https://cl.ly/1Y0o3R1h042v
It looks like this is the part of the function that is causing the issue:
Going to continue to troubleshoot.
The text was updated successfully, but these errors were encountered: