summaryrefslogtreecommitdiff
path: root/famlist.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@gmail.com>2015-05-30 19:13:51 +0100
committerGreg Roach <fisharebest@gmail.com>2015-05-30 23:29:57 +0100
commitcbc1590a8c715aa2d88bd745610b899587bd9563 (patch)
tree8411c52737b981c7eff37ffcdd083902cb769141 /famlist.php
parentffd703ea1e658c7dcb5e5f1f9ef137a420f2d167 (diff)
downloadwebtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.tar.gz
webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.tar.bz2
webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.zip
Code style
Diffstat (limited to 'famlist.php')
-rw-r--r--famlist.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/famlist.php b/famlist.php
index 7aee193266..0967e947ff 100644
--- a/famlist.php
+++ b/famlist.php
@@ -159,7 +159,7 @@ if (!Auth::isSearchEngine()) {
$list[] = '<a href="' . WT_SCRIPT_NAME . '?show_all=yes' . '&amp;ged=' . $WT_TREE->getNameUrl() . '">' . I18N::translate('All') . '</a>';
}
}
-echo '<p class="center alpha_index">', join(' | ', $list), '</p>';
+echo '<p class="center alpha_index">', implode(' | ', $list), '</p>';
// Search spiders don't get an option to show/hide the surname sublists,
// nor does it make sense on the all/unknown/surname views
@@ -248,7 +248,7 @@ if ($show === 'indi' || $show === 'surn') {
if ($show_all === 'no') {
echo '<h2 class="center">', I18N::translate('Individuals with surname %s', $legend), '</h2>';
}
- echo '<p class="center alpha_index">', join(' | ', $list), '</p>';
+ echo '<p class="center alpha_index">', implode(' | ', $list), '</p>';
}
}
if ($show === 'indi') {