diff options
| author | Greg Roach <fisharebest@gmail.com> | 2015-05-30 19:13:51 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2015-05-30 23:29:57 +0100 |
| commit | cbc1590a8c715aa2d88bd745610b899587bd9563 (patch) | |
| tree | 8411c52737b981c7eff37ffcdd083902cb769141 /famlist.php | |
| parent | ffd703ea1e658c7dcb5e5f1f9ef137a420f2d167 (diff) | |
| download | webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.tar.gz webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.tar.bz2 webtrees-cbc1590a8c715aa2d88bd745610b899587bd9563.zip | |
Code style
Diffstat (limited to 'famlist.php')
| -rw-r--r-- | famlist.php | 4 |
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' . '&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') { |
