diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-07-01 15:40:29 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-07-01 16:32:23 +0100 |
| commit | 6f27a910dcc825dd9ca108f69e8f229828068236 (patch) | |
| tree | 3d2e2d46d2f6ee28105465eb2731f8d0c08c3ba9 /placelist.php | |
| parent | 813d78a9ae4f372d594e9c0f157dffc6814c9ad1 (diff) | |
| download | webtrees-6f27a910dcc825dd9ca108f69e8f229828068236.tar.gz webtrees-6f27a910dcc825dd9ca108f69e8f229828068236.tar.bz2 webtrees-6f27a910dcc825dd9ca108f69e8f229828068236.zip | |
Fix: #1702 convert individual list from function to view
Diffstat (limited to 'placelist.php')
| -rw-r--r-- | placelist.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/placelist.php b/placelist.php index c18bb6259f..a17b0f1966 100644 --- a/placelist.php +++ b/placelist.php @@ -201,8 +201,8 @@ switch ($display) { <?php if (empty($myindilist)): ?> <p><?= I18N::translate('No results found.') ?></p> <?php else: ?> - <?= FunctionsPrintLists::individualTable($myindilist) ?> - <?php endif ?> + <?= view('tables/individuals', ['individuals' => $myindilist, 'sosa' => false, 'tree' => $WT_TREE]) ?> + <?php endif ?> </div> <div class="tab-pane fade" role="tabpanel" id="families"> |
