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
In cw.php oldToNewDescriptionItem checks the input array for the value using findValueInArray and then checks (!$dsData) if the value was found. However findValueInArray returns null on error and any other value should be valid, but checking !$dsData will return errors for such things as empty arrays. I think this should be changed to an explicit check for null $daData===null.
The text was updated successfully, but these errors were encountered:
In cw.php oldToNewDescriptionItem checks the input array for the value using findValueInArray and then checks (!$dsData) if the value was found. However findValueInArray returns null on error and any other value should be valid, but checking !$dsData will return errors for such things as empty arrays. I think this should be changed to an explicit check for null $daData===null.
The text was updated successfully, but these errors were encountered: