summaryrefslogtreecommitdiff
path: root/family.php
diff options
context:
space:
mode:
Diffstat (limited to 'family.php')
-rw-r--r--family.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/family.php b/family.php
index c6ff85a05a..2c2faec2a5 100644
--- a/family.php
+++ b/family.php
@@ -38,7 +38,9 @@ if ($controller->record && $controller->record->canShow()) {
return;
}
+$facts = $controller->record->getFacts(null, true);
+
echo View::make('family-page', [
'family' => $controller->record,
- 'facts' => $controller->familyFacts(),
+ 'facts' => $facts,
]);