diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-07-01 20:36:06 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-07-01 20:42:15 +0100 |
| commit | b31b29bcf978a83b5aa792d22a279bad2d83f4c9 (patch) | |
| tree | 67c58f4ee067f3a95e79ee7f303fed8e218b4174 /placelist.php | |
| parent | 6f27a910dcc825dd9ca108f69e8f229828068236 (diff) | |
| download | webtrees-b31b29bcf978a83b5aa792d22a279bad2d83f4c9.tar.gz webtrees-b31b29bcf978a83b5aa792d22a279bad2d83f4c9.tar.bz2 webtrees-b31b29bcf978a83b5aa792d22a279bad2d83f4c9.zip | |
Fix: #1703 convert family list from function to view
Diffstat (limited to 'placelist.php')
| -rw-r--r-- | placelist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/placelist.php b/placelist.php index a17b0f1966..07c760eec7 100644 --- a/placelist.php +++ b/placelist.php @@ -209,7 +209,7 @@ switch ($display) { <?php if (empty($myfamlist)): ?> <p><?= I18N::translate('No results found.') ?></p> <?php else: ?> - <?= FunctionsPrintLists::familyTable($myfamlist) ?> + <?= view('tables/families', ['families' => $myfamlist, 'tree' => $WT_TREE]) ?> <?php endif ?> </div> </div> |
