diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-07-02 20:07:25 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-07-02 22:25:17 +0100 |
| commit | 0d02e119c530a550b569ab625febe5555acfbaec (patch) | |
| tree | b8617494c0b43614bfc5c77c7b312ac9e1ae33fa /placelist.php | |
| parent | 6317a42df7fd1c115c6680600ed0637a63304fbf (diff) | |
| download | webtrees-0d02e119c530a550b569ab625febe5555acfbaec.tar.gz webtrees-0d02e119c530a550b569ab625febe5555acfbaec.tar.bz2 webtrees-0d02e119c530a550b569ab625febe5555acfbaec.zip | |
Convert lists from functions to views
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 07c760eec7..387ce201e1 100644 --- a/placelist.php +++ b/placelist.php @@ -201,7 +201,7 @@ switch ($display) { <?php if (empty($myindilist)): ?> <p><?= I18N::translate('No results found.') ?></p> <?php else: ?> - <?= view('tables/individuals', ['individuals' => $myindilist, 'sosa' => false, 'tree' => $WT_TREE]) ?> + <?= view('lists/individuals-table', ['individuals' => $myindilist, 'sosa' => false, 'tree' => $WT_TREE]) ?> <?php endif ?> </div> @@ -209,7 +209,7 @@ switch ($display) { <?php if (empty($myfamlist)): ?> <p><?= I18N::translate('No results found.') ?></p> <?php else: ?> - <?= view('tables/families', ['families' => $myfamlist, 'tree' => $WT_TREE]) ?> + <?= view('lists/families-table', ['families' => $myfamlist, 'tree' => $WT_TREE]) ?> <?php endif ?> </div> </div> |
