summaryrefslogtreecommitdiff
path: root/app/Http/Controllers/DescendantsChartController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Http/Controllers/DescendantsChartController.php')
-rw-r--r--app/Http/Controllers/DescendantsChartController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Http/Controllers/DescendantsChartController.php b/app/Http/Controllers/DescendantsChartController.php
index 0a5a4a5abd..677de9dfe8 100644
--- a/app/Http/Controllers/DescendantsChartController.php
+++ b/app/Http/Controllers/DescendantsChartController.php
@@ -251,7 +251,7 @@ class DescendantsChartController extends AbstractChartController
echo '<span class="details1">';
echo '<a href="#" onclick="expand_layer(\'' . $uid . '\'); return false;" class="top"><i id="' . $uid . '_img" class="icon-minus" title="' . I18N::translate('View this family') . '"></i></a>';
if ($family->canShow()) {
- foreach ($family->getFacts(WT_EVENTS_MARR) as $fact) {
+ foreach ($family->facts(WT_EVENTS_MARR) as $fact) {
echo ' <a href="', e($family->url()), '" class="details1">', $fact->summary(), '</a>';
}
}