summaryrefslogtreecommitdiff
path: root/app/Family.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-11-22 09:43:25 +0000
committerGreg Roach <fisharebest@webtrees.net>2018-11-22 09:43:25 +0000
commit6e83554d11bda591b2d74585d0941f7b3361b96b (patch)
treec9621abb24ce010980d5bbea9191b820d6bab1b3 /app/Family.php
parent4852d81f2623f779034b8fe4d2eabeda2f426c40 (diff)
downloadwebtrees-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.php2
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;
}