Skip to content

Commit

Permalink
Fix: #4674 - change family members deletes all children
Browse files Browse the repository at this point in the history
  • Loading branch information
fisharebest committed Dec 20, 2022
1 parent f4e80bd commit 6d9950d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/RequestHandlers/ChangeFamilyMembersAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function handle(ServerRequestInterface $request): ResponseInterface

$HUSB = Validator::parsedBody($request)->isXref()->string('HUSB', '');
$WIFE = Validator::parsedBody($request)->isXref()->string('WIFE', '');
$CHIL = Validator::parsedBody($request)->isXref()->array('CHIL');
$CHIL = Validator::parsedBody($request)->array('CHIL');

// Current family members
$old_father = $family->husband();
Expand Down

0 comments on commit 6d9950d

Please sign in to comment.