diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2022-02-01 09:07:22 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2022-02-01 09:07:22 +0000 |
| commit | f773eef0f1ab3292e7675177214b5cbf951bbe63 (patch) | |
| tree | 487e029a497f957c20db419639fe36b904dbc756 | |
| parent | 6467f700fb7d741c5794e09a6ab52fbc1b4384f9 (diff) | |
| download | webtrees-f773eef0f1ab3292e7675177214b5cbf951bbe63.tar.gz webtrees-f773eef0f1ab3292e7675177214b5cbf951bbe63.tar.bz2 webtrees-f773eef0f1ab3292e7675177214b5cbf951bbe63.zip | |
Fix: #4145 - add CSS class to indicate where branches split
| -rw-r--r-- | app/Module/BranchesListModule.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Module/BranchesListModule.php b/app/Module/BranchesListModule.php index d100ed5803..2fd9f39e6f 100644 --- a/app/Module/BranchesListModule.php +++ b/app/Module/BranchesListModule.php @@ -388,7 +388,7 @@ class BranchesListModule extends AbstractModule implements ModuleListInterface, // No matching name? Typically children with a different surname. The branch stops here. if ($person_name === '') { - return '<li title="' . strip_tags($individual->fullName()) . '"><small>' . view('icons/sex', ['sex' => $individual->sex()]) . '</small>…</li>'; + return '<li title="' . strip_tags($individual->fullName()) . '" class="wt-branch-split"><small>' . view('icons/sex', ['sex' => $individual->sex()]) . '</small>…</li>'; } // Is this individual one of our ancestors? |
