diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2021-07-16 17:35:36 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2021-07-16 17:35:44 +0100 |
| commit | 2f86083cc04612ee254f40b0d8f158aab531a29f (patch) | |
| tree | 7f3ea786fa96564e46cd15582fcd073579b70b43 /app/Factories | |
| parent | da3cb887318b253ac0a743309ac1b537880d6ba2 (diff) | |
| download | webtrees-2f86083cc04612ee254f40b0d8f158aab531a29f.tar.gz webtrees-2f86083cc04612ee254f40b0d8f158aab531a29f.tar.bz2 webtrees-2f86083cc04612ee254f40b0d8f158aab531a29f.zip | |
Fix: #3956, Fix: #3954 - update advanced search to use full GEDCOM tags
Diffstat (limited to 'app/Factories')
| -rw-r--r-- | app/Factories/ElementFactory.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/Factories/ElementFactory.php b/app/Factories/ElementFactory.php index b26cdf69ac..1ad03ceda7 100644 --- a/app/Factories/ElementFactory.php +++ b/app/Factories/ElementFactory.php @@ -323,6 +323,7 @@ class ElementFactory implements ElementFactoryInterface 'FAM:CHAN:DATE:TIME' => new TimeValue(I18N::translate('Time of last change')), 'FAM:CHIL' => new XrefIndividual(I18N::translate('Child')), 'FAM:DIV' => new Divorce(I18N::translate('Divorce')), + 'FAM:DIV:DATE' => new DateValue(I18N::translate('Date of divorce')), 'FAM:DIVF' => new DivorceFiled(I18N::translate('Divorce filed')), 'FAM:ENGA' => new Engagement(I18N::translate('Engagement')), 'FAM:ENGA:DATE' => new DateValue(I18N::translate('Date of engagement')), @@ -349,8 +350,8 @@ class ElementFactory implements ElementFactoryInterface 'FAM:RESN' => new RestrictionNotice(I18N::translate('Restriction')), 'FAM:RIN' => new AutomatedRecordId(I18N::translate('Record ID number')), 'FAM:SLGS' => new LdsSpouseSealing(I18N::translate('LDS spouse sealing')), - 'FAM:SLGS:DATE' => new DateLdsOrd(I18N::translate('Date')), - 'FAM:SLGS:PLAC' => new PlaceLivingOrdinance(I18N::translate('Place')), + 'FAM:SLGS:DATE' => new DateLdsOrd(I18N::translate('Date of LDS spouse sealing')), + 'FAM:SLGS:PLAC' => new PlaceLivingOrdinance(I18N::translate('Place of LDS spouse sealing')), 'FAM:SLGS:STAT' => new LdsSpouseSealingDateStatus(I18N::translate('Status')), 'FAM:SLGS:STAT:DATE' => new ChangeDate(I18N::translate('Status change date')), 'FAM:SLGS:TEMP' => new TempleCode(I18N::translate('Temple')), |
