summaryrefslogtreecommitdiff
path: root/app/Controller/BranchesController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controller/BranchesController.php')
-rw-r--r--app/Controller/BranchesController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Controller/BranchesController.php b/app/Controller/BranchesController.php
index 1e5609b54f..74d3e04546 100644
--- a/app/Controller/BranchesController.php
+++ b/app/Controller/BranchesController.php
@@ -186,7 +186,7 @@ class BranchesController extends PageController {
* @return string
*/
private function getDescendantsHtml(Individual $individual, Family $parents = null) {
- // A person has many names. Select the one that matches the searched surname
+ // A person has many names. Select the one that matches the searched surname
$person_name = '';
foreach ($individual->getAllNames() as $name) {
list($surn1) = explode(",", $name['sort']);
@@ -202,7 +202,7 @@ class BranchesController extends PageController {
}
}
- // No matching name? Typically children with a different surname. The branch stops here.
+ // No matching name? Typically children with a different surname. The branch stops here.
if (!$person_name) {
return '<li title="' . strip_tags($individual->getFullName()) . '">' . $individual->getSexImage() . '…</li>';
}
@@ -278,7 +278,7 @@ class BranchesController extends PageController {
}
/**
- * Convert a SOSA number into a generation number. e.g. 8 = great-grandfather = 3 generations
+ * Convert a SOSA number into a generation number. e.g. 8 = great-grandfather = 3 generations
*
* @param int $sosa
*