Skip to content

Commit

Permalink
Fix: #4077 - missing individual icon on interactive tree
Browse files Browse the repository at this point in the history
  • Loading branch information
fisharebest committed Oct 19, 2021
1 parent f78da67 commit dc6db0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Module/InteractiveTree/TreeView.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private function getPersonDetails(Individual $individual, Family $family = null)
]);

$hmtl = $this->getThumbnail($individual);
$hmtl .= '<a class="tv_link" href="' . e($individual->url()) . '">' . $individual->fullName() . '</a> <a href="' . e($chart_url) . '" title="' . I18N::translate('Interactive tree of %s', strip_tags($individual->fullName())) . '" class="wt-icon-individual tv_link tv_treelink"></a>';
$hmtl .= '<a class="tv_link" href="' . e($individual->url()) . '">' . $individual->fullName() . '</a> <a href="' . e($chart_url) . '" title="' . I18N::translate('Interactive tree of %s', strip_tags($individual->fullName())) . '" class="tv_link tv_treelink">' . view('icons/individual') . '</a>';
foreach ($individual->facts(Gedcom::BIRTH_EVENTS, true) as $fact) {
$hmtl .= $fact->summary();
}
Expand Down

0 comments on commit dc6db0e

Please sign in to comment.