@@ -334,9 +334,11 @@ |
||
334 | 334 | 'fqpn', |
335 | 335 | ]; |
336 | 336 | |
337 | - if ($serverfile !== '' && is_dir(WT_DATA_DIR . 'places')) { // first choice is file on server |
|
337 | + if ($serverfile !== '' && is_dir(WT_DATA_DIR . 'places')) { |
|
338 | +// first choice is file on server |
|
338 | 339 | $filename = WT_DATA_DIR . 'places/' . $serverfile; |
339 | - } elseif ($request->files->has('localfile')) { // 2nd choice is local file |
|
340 | + } elseif ($request->files->has('localfile')) { |
|
341 | +// 2nd choice is local file |
|
340 | 342 | $filename = $request->files->get('localfile')->getPathName(); |
341 | 343 | } |
342 | 344 |
@@ -223,7 +223,8 @@ discard block |
||
223 | 223 | <li class="wt-initials-list-item d-flex"> |
224 | 224 | <?php if ($count > 0) : ?> |
225 | 225 | <a href="<?= e(route($route, ['alpha' => $letter, 'ged' => $tree->name()])) ?>" class="wt-initial px-1<?= $letter === $alpha ? ' active' : '' ?> '" title="<?= I18N::number($count) ?>"><?= $this->surnameInitial((string) $letter) ?></a> |
226 | - <?php else : ?> |
|
226 | + <?php else { |
|
227 | + : ?> |
|
227 | 228 | <span class="wt-initial px-1 text-muted"><?= $this->surnameInitial((string) $letter) ?></span> |
228 | 229 | |
229 | 230 | <?php endif ?> |
@@ -277,6 +278,7 @@ discard block |
||
277 | 278 | |
278 | 279 | if ($show === 'indi' || $show === 'surn') { |
279 | 280 | $surns = $this->individual_list_service->surnames($surname, $alpha, $show_marnm === 'yes', $families, WT_LOCALE, I18N::collation()); |
281 | +} |
|
280 | 282 | if ($show === 'surn') { |
281 | 283 | // Show the surname list |
282 | 284 | switch ($tree->getPreference('SURNAME_LIST_STYLE')) { |