We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removing any child via ChangeFamilyMembersPage/ChangeFamilyMembersAction results in the family having no children left at all. Tested on demo server.
Cause: Either the request array is malformed (contains empty entries, i.e. the removed children), example:
[CHIL] => Array ( [0] => I6647 [1] => I6648 [2] => I6649 [3] => I6650 [4] => I6651 [5] => [6] => I17063 )
or it isn't validated corectly here (empty value should probably just be skipped in array, currently the Validator returns null in that case).
The text was updated successfully, but these errors were encountered:
Fix: #4674 - change family members deletes all children
64e5020
6d9950d
or it isn't validated correctly
The isXref() validator expects an array of valid xrefs - so this is the wrong validation to use here.
isXref()
Sorry, something went wrong.
Fix: fisharebest#4674 - change family members deletes all children
1301d4c
No branches or pull requests
Removing any child via ChangeFamilyMembersPage/ChangeFamilyMembersAction results in the family having no children left at all.
Tested on demo server.
Cause: Either the request array is malformed (contains empty entries, i.e. the removed children), example:
or it isn't validated corectly here (empty value should probably just be skipped in array, currently the Validator returns null in that case).
The text was updated successfully, but these errors were encountered: