diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-11-12 06:07:05 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-11-18 09:29:38 +0000 |
| commit | 30158ae76837ce51811d3e0fca2ea5852182f42e (patch) | |
| tree | db9dcb7c8ac33da99511227a61b30e6ac49ffdfb /resources/views/lists/families-table.phtml | |
| parent | 3a136367baf551e4fb2b2b7afbc3e7e870b52568 (diff) | |
| download | webtrees-30158ae76837ce51811d3e0fca2ea5852182f42e.tar.gz webtrees-30158ae76837ce51811d3e0fca2ea5852182f42e.tar.bz2 webtrees-30158ae76837ce51811d3e0fca2ea5852182f42e.zip | |
Rename GedcomRecord::getFacts() to facts()
Diffstat (limited to 'resources/views/lists/families-table.phtml')
| -rw-r--r-- | resources/views/lists/families-table.phtml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/resources/views/lists/families-table.phtml b/resources/views/lists/families-table.phtml index dbca9e98c3..8327b4a216 100644 --- a/resources/views/lists/families-table.phtml +++ b/resources/views/lists/families-table.phtml @@ -305,9 +305,9 @@ for ($year = 1550; $year < 2030; $year += 10) { <?php if ($marriage_dates[0]->gregorianYear() >= 1550 && $marriage_dates[0]->gregorianYear() < 2030) : ?> <?php $marr_by_decade[(int) ($marriage_dates[0]->gregorianYear() / 10) * 10] .= $husb->getSex() . $wife->getSex() ?> <?php endif ?> - <?php elseif ($family->getFacts('_NMR')) : ?> + <?php elseif ($family->facts('_NMR')) : ?> <?= I18N::translate('no') ?> - <?php elseif ($family->getFacts('MARR')) : ?> + <?php elseif ($family->facts('MARR')) : ?> <?= I18N::translate('yes') ?> <?php endif ?> </td> @@ -346,7 +346,7 @@ for ($year = 1550; $year < 2030; $year += 10) { <?php else : ?> YES <?php endif ?> - <?php if ($family->getFacts(WT_EVENTS_DIV)) : ?> + <?php if ($family->facts(WT_EVENTS_DIV)) : ?> D <?php endif ?> <?php if (count($husb->getSpouseFamilies()) > 1 || count($wife->getSpouseFamilies()) > 1) : ?> |
