diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-11-22 09:43:25 +0000 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-11-22 09:43:25 +0000 |
| commit | 6e83554d11bda591b2d74585d0941f7b3361b96b (patch) | |
| tree | c9621abb24ce010980d5bbea9191b820d6bab1b3 /app/Family.php | |
| parent | 4852d81f2623f779034b8fe4d2eabeda2f426c40 (diff) | |
| download | webtrees-6e83554d11bda591b2d74585d0941f7b3361b96b.tar.gz webtrees-6e83554d11bda591b2d74585d0941f7b3361b96b.tar.bz2 webtrees-6e83554d11bda591b2d74585d0941f7b3361b96b.zip | |
Fix: #2036 - updated functions
Diffstat (limited to 'app/Family.php')
| -rw-r--r-- | app/Family.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Family.php b/app/Family.php index b40084246f..d157e534bb 100644 --- a/app/Family.php +++ b/app/Family.php @@ -351,7 +351,7 @@ class Family extends GedcomRecord public function getAllMarriagePlaces(): array { foreach (Gedcom::MARRIAGE_EVENTS as $event) { - $places = $this->getAllEventPlaces($event); + $places = $this->getAllEventPlaces([$event]); if (!empty($places)) { return $places; } |
