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 /resources | |
| 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 'resources')
| -rw-r--r-- | resources/views/search-advanced-page.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/views/search-advanced-page.phtml b/resources/views/search-advanced-page.phtml index 300ba2cf30..2834539539 100644 --- a/resources/views/search-advanced-page.phtml +++ b/resources/views/search-advanced-page.phtml @@ -64,7 +64,7 @@ use Illuminate\Support\Collection; </div> <?php foreach ($fields as $field_name => $field_value) : ?> - <?php if (str_starts_with($field_name, 'FAMC:HUSB:')) : ?> + <?php if (str_starts_with($field_name, 'FATHER:')) : ?> <?= view('search-advanced-field', ['field_label' => $field_labels[$field_name], 'field_name' => $field_name, 'field_value' => $field_value, 'modifier' => $modifiers[$field_name] ?? '', 'date_options' => $date_options, 'name_options' => $name_options]) ?> <?php endif ?> <?php endforeach ?> @@ -76,7 +76,7 @@ use Illuminate\Support\Collection; </div> <?php foreach ($fields as $field_name => $field_value) : ?> - <?php if (str_starts_with($field_name, 'FAMC:WIFE:')) : ?> + <?php if (str_starts_with($field_name, 'MOTHER:')) : ?> <?= view('search-advanced-field', ['field_label' => $field_labels[$field_name], 'field_name' => $field_name, 'field_value' => $field_value, 'modifier' => $modifiers[$field_name] ?? '', 'date_options' => $date_options, 'name_options' => $name_options]) ?> <?php endif ?> <?php endforeach ?> |
