@@ -342,9 +342,11 @@ |
||
342 | 342 | 'fqpn', |
343 | 343 | ]; |
344 | 344 | |
345 | - if ($serverfile !== '') { // first choice is file on server |
|
345 | + if ($serverfile !== '') { |
|
346 | +// first choice is file on server |
|
346 | 347 | $filename = WT_DATA_DIR . 'places/' . $serverfile; |
347 | - } elseif ($_FILES['localfile']['error'] === UPLOAD_ERR_OK) { // 2nd choice is local file |
|
348 | + } elseif ($_FILES['localfile']['error'] === UPLOAD_ERR_OK) { |
|
349 | +// 2nd choice is local file |
|
348 | 350 | $filename = $_FILES['localfile']['tmp_name']; |
349 | 351 | } |
350 | 352 |
@@ -216,7 +216,8 @@ discard block |
||
216 | 216 | <li class="wt-initials-list-item d-flex"> |
217 | 217 | <?php if ($count > 0) : ?> |
218 | 218 | <a href="<?= e(route($route, ['alpha' => $letter, 'ged' => $tree->name()])) ?>" class="wt-initial<?= $letter === $alpha ? ' active' : ''?> '" title="<?= I18N::number($count) ?>"><?= $this->surnameInitial((string) $letter) ?></a> |
219 | - <?php else : ?> |
|
219 | + <?php else { |
|
220 | + : ?> |
|
220 | 221 | <span class="wt-initial text-muted"><?= $this->surnameInitial((string) $letter) ?></span> |
221 | 222 | |
222 | 223 | <?php endif ?> |
@@ -270,6 +271,7 @@ discard block |
||
270 | 271 | |
271 | 272 | if ($show === 'indi' || $show === 'surn') { |
272 | 273 | $surns = $this->surnames($tree, $surname, $alpha, $show_marnm === 'yes', $families); |
274 | +} |
|
273 | 275 | if ($show === 'surn') { |
274 | 276 | // Show the surname list |
275 | 277 | switch ($tree->getPreference('SURNAME_LIST_STYLE')) { |