diff options
| author | Greg Roach <fisharebest@gmail.com> | 2017-08-06 17:41:45 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2017-08-06 17:42:00 +0100 |
| commit | ba644b614eb02c20e288129f174b26878b4df527 (patch) | |
| tree | 4a74f40ae34e523b1136f02bcdc99b5177aa5bd6 /app/GedcomTag.php | |
| parent | 68e9180f12197f7b7acf8fd321b1740bec3c8127 (diff) | |
| download | webtrees-ba644b614eb02c20e288129f174b26878b4df527.tar.gz webtrees-ba644b614eb02c20e288129f174b26878b4df527.tar.bz2 webtrees-ba644b614eb02c20e288129f174b26878b4df527.zip | |
Fix #1226 - NICK is a standard name fact, not and advanced one
Diffstat (limited to 'app/GedcomTag.php')
| -rw-r--r-- | app/GedcomTag.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/GedcomTag.php b/app/GedcomTag.php index e4aadccea0..1a8ba7edfb 100644 --- a/app/GedcomTag.php +++ b/app/GedcomTag.php @@ -1469,9 +1469,9 @@ class GedcomTag { case 'NAME': $tags = [ // Facts subordinate to NAME - 'NICK', 'FONE', 'ROMN', + 'FONE', 'ROMN', // non standard tags - '_HEB', '_AKA', + '_HEB', '_AKA', '_MARNM', ]; break; default: |
