Skip to content

Commit

Permalink
Fix: #4871 - missing INDI:ADOP:FAMC:ADOP tag
Browse files Browse the repository at this point in the history
  • Loading branch information
fisharebest committed Aug 27, 2023
1 parent b7eac73 commit 7f3becb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Gedcom.php
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ private function gedcom551Tags(): array
'INDI:*:WWW' => new AddressWebPage(I18N::translate('URL')),
'INDI:ADOP' => new Adoption(I18N::translate('Adoption')),
'INDI:ADOP:DATE' => new DateValue(I18N::translate('Date of adoption')),
'INDI:ADOP:FAMC' => new XrefFamily(I18N::translate('Adoptive parents')),
'INDI:ADOP:FAMC' => new XrefFamily(I18N::translate('Adoptive parents'), ['ADOP' => '0:1']),
'INDI:ADOP:FAMC:ADOP' => new AdoptedByWhichParent(I18N::translate('Adoption')),
'INDI:ADOP:PLAC' => new PlaceName(I18N::translate('Place of adoption')),
'INDI:AFN' => new AncestralFileNumber(I18N::translate('Ancestral file number')),
Expand Down

0 comments on commit 7f3becb

Please sign in to comment.