diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2023-07-19 14:04:32 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2023-07-19 14:04:32 +0100 |
| commit | f8b20979028ca943dce4985840054651f543647c (patch) | |
| tree | 64c1e97c8e621a01e5a594234f4e08a592cb697c | |
| parent | d5a67ecc93b0e0a2a173314356281c2abacf8f4b (diff) | |
| download | webtrees-f8b20979028ca943dce4985840054651f543647c.tar.gz webtrees-f8b20979028ca943dce4985840054651f543647c.tar.bz2 webtrees-f8b20979028ca943dce4985840054651f543647c.zip | |
Fix: #4850 - HEAD:SCHMA:TAG not recognised
| -rw-r--r-- | app/CustomTags/Gedcom7.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/CustomTags/Gedcom7.php b/app/CustomTags/Gedcom7.php index 85a9c2116a..19944ac48e 100644 --- a/app/CustomTags/Gedcom7.php +++ b/app/CustomTags/Gedcom7.php @@ -99,6 +99,8 @@ class Gedcom7 implements CustomTagInterface 'FAM:REFN:TYPE' => new UserReferenceType(I18N::translate('Type')), 'FAM:SNOTE' => new XrefSharedNote(I18N::translate('Shared note')), 'FAM:UID' => new Uid(I18N::translate('Unique identifier')), + 'HEAD:SCHMA' => new CustomElement(I18N::translate('Custom GEDCOM tags')), + 'HEAD:SCHMA:TAG' => new CustomElement(I18N::translate('GEDCOM tag')), 'INDI:*:ASSO' => new XrefAssociate(I18N::translate('Associate')), 'INDI:*:ASSO:PHRASE' => new CustomElement(I18N::translate('Phrase')), 'INDI:*:ASSO:ROLE' => new RoleInEvent(I18N::translate('Role')), |
