summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-02-11 08:11:25 +0000
committerGreg Roach <fisharebest@gmail.com>2015-02-11 08:11:25 +0000
commitb12f83efaebc5ba7f504e60e7155e14f4844da8f (patch)
treec9c7ddbcd9047895aaa60e9d4a0fe6caa69530f4
parent877890d4906b230b94dac373fd8a259be6a4440e (diff)
downloadwebtrees-b12f83efaebc5ba7f504e60e7155e14f4844da8f.tar.gz
webtrees-b12f83efaebc5ba7f504e60e7155e14f4844da8f.tar.bz2
webtrees-b12f83efaebc5ba7f504e60e7155e14f4844da8f.zip
Fix: 1420147 wrong target to list menus
-rw-r--r--app/Theme/BaseTheme.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Theme/BaseTheme.php b/app/Theme/BaseTheme.php
index 9a00e36ec2..c97f0ab426 100644
--- a/app/Theme/BaseTheme.php
+++ b/app/Theme/BaseTheme.php
@@ -1390,7 +1390,7 @@ abstract class BaseTheme {
protected function menuListsFamilies() {
global $controller;
- return new Menu(I18N::translate('Individuals'), 'famlist.php?ged=' . $this->tree->getNameUrl() . '&amp;surname=' . rawurlencode($controller->getSignificantSurname()), 'menu-list-fam');
+ return new Menu(I18N::translate('Families'), 'famlist.php?ged=' . $this->tree->getNameUrl() . '&amp;surname=' . rawurlencode($controller->getSignificantSurname()), 'menu-list-fam');
}
/**
@@ -1401,7 +1401,7 @@ abstract class BaseTheme {
protected function menuListsIndividuals() {
global $controller;
- return new Menu(I18N::translate('Families'), 'famlist.php?ged=' . $this->tree->getNameUrl() . '&amp;surname=' . rawurlencode($controller->getSignificantSurname()), 'menu-list-indi');
+ return new Menu(I18N::translate('Individuals'), 'indilist.php?ged=' . $this->tree->getNameUrl() . '&amp;surname=' . rawurlencode($controller->getSignificantSurname()), 'menu-list-indi');
}
/**