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 /app/Module/ExtraInformationModule.php | |
| parent | 3a136367baf551e4fb2b2b7afbc3e7e870b52568 (diff) | |
| download | webtrees-30158ae76837ce51811d3e0fca2ea5852182f42e.tar.gz webtrees-30158ae76837ce51811d3e0fca2ea5852182f42e.tar.bz2 webtrees-30158ae76837ce51811d3e0fca2ea5852182f42e.zip | |
Rename GedcomRecord::getFacts() to facts()
Diffstat (limited to 'app/Module/ExtraInformationModule.php')
| -rw-r--r-- | app/Module/ExtraInformationModule.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Module/ExtraInformationModule.php b/app/Module/ExtraInformationModule.php index c25a477ec6..752245ea2e 100644 --- a/app/Module/ExtraInformationModule.php +++ b/app/Module/ExtraInformationModule.php @@ -65,7 +65,7 @@ class ExtraInformationModule extends AbstractModule implements ModuleSidebarInte { $indifacts = []; // The individual’s own facts - foreach ($individual->getFacts() as $fact) { + foreach ($individual->facts() as $fact) { if (self::showFact($fact)) { $indifacts[] = $fact; } |
