@@ -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 | |
@@ -98,7 +98,7 @@ discard block |
||
| 98 | 98 | { |
| 99 | 99 | $url = $request->get('url', ''); |
| 100 | 100 | $xref = $request->get('xref', ''); |
| 101 | - $change_id = (int)$request->get('change_id'); |
|
| 101 | + $change_id = (int) $request->get('change_id'); |
|
| 102 | 102 | |
| 103 | 103 | $changes = Database::prepare( |
| 104 | 104 | "SELECT change_id, xref, old_gedcom, new_gedcom" . |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | { |
| 205 | 205 | $url = $request->get('url', ''); |
| 206 | 206 | $xref = $request->get('xref', ''); |
| 207 | - $change_id = (int)$request->get('change_id'); |
|
| 207 | + $change_id = (int) $request->get('change_id'); |
|
| 208 | 208 | |
| 209 | 209 | // Reject a change, and subsequent changes to the same record |
| 210 | 210 | Database::prepare( |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | if (preg_match('/^(\d+) B\.C\.$/', $year, $match)) { |
| 77 | - return - (int) $match[1]; |
|
| 77 | + return -(int) $match[1]; |
|
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | return (int) $year; |
@@ -5374,7 +5374,7 @@ |
||
| 5374 | 5374 | foreach ($rows as $row) { |
| 5375 | 5375 | $family = Family::getInstance($row->id, $this->tree); |
| 5376 | 5376 | if ($family->canShow()) { |
| 5377 | - $total = (int) $row->tot; |
|
| 5377 | + $total = (int) $row->tot; |
|
| 5378 | 5378 | |
| 5379 | 5379 | if ($type === 'list') { |
| 5380 | 5380 | $top10[] = '<li><a href="' . e($family->url()) . '">' . $family->getFullName() . '</a> - ' . I18N::plural('%s grandchild', '%s grandchildren', $total, I18N::number($total)); |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | // Ambiguous dates - don't override calendar escape |
| 163 | 163 | if ($cal == '') { |
| 164 | 164 | if (preg_match('/^(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)$/', $m)) { |
| 165 | - $cal = GregorianDate::ESCAPE; |
|
| 165 | + $cal = GregorianDate::ESCAPE; |
|
| 166 | 166 | } else { |
| 167 | 167 | if (preg_match('/^[345]\d\d\d$/', $y)) { |
| 168 | 168 | // Year 3000-5999 |
@@ -460,7 +460,7 @@ discard block |
||
| 460 | 460 | public function addYears(int $years, string $qualifier = ''): Date |
| 461 | 461 | { |
| 462 | 462 | $tmp = clone $this; |
| 463 | - $tmp->date1->year += $years; |
|
| 463 | + $tmp->date1->year += $years; |
|
| 464 | 464 | $tmp->date1->month = 0; |
| 465 | 465 | $tmp->date1->day = 0; |
| 466 | 466 | $tmp->date1->setJdFromYmd(); |
@@ -434,7 +434,7 @@ |
||
| 434 | 434 | $histo = []; |
| 435 | 435 | require Site::getPreference('INDEX_DIRECTORY') . 'histo.' . WT_LOCALE . '.php'; |
| 436 | 436 | foreach ($histo as $hist) { |
| 437 | - $fact = new Fact($hist, $person, 'histo'); |
|
| 437 | + $fact = new Fact($hist, $person, 'histo'); |
|
| 438 | 438 | |
| 439 | 439 | if (self::includeFact($fact, $min_date, $max_date)) { |
| 440 | 440 | $facts[] = $fact; |
@@ -1579,7 +1579,7 @@ |
||
| 1579 | 1579 | public function menuSearchPhonetic(): Menu |
| 1580 | 1580 | { |
| 1581 | 1581 | /* I18N: search using “sounds like”, rather than exact spelling */ |
| 1582 | - return new Menu(I18N::translate('Phonetic search'), route('search-phonetic', ['ged' => $this->tree->name(), 'action' => 'soundex',]), 'menu-search-soundex', ['rel' => 'nofollow']); |
|
| 1582 | + return new Menu(I18N::translate('Phonetic search'), route('search-phonetic', ['ged' => $this->tree->name(), 'action' => 'soundex', ]), 'menu-search-soundex', ['rel' => 'nofollow']); |
|
| 1583 | 1583 | } |
| 1584 | 1584 | |
| 1585 | 1585 | /** |
@@ -415,7 +415,7 @@ |
||
| 415 | 415 | ]; |
| 416 | 416 | |
| 417 | 417 | $access_level = $access_levels[$privatize_export]; |
| 418 | - $encoding = $convert ? 'ANSI' : 'UTF-8'; |
|
| 418 | + $encoding = $convert ? 'ANSI' : 'UTF-8'; |
|
| 419 | 419 | |
| 420 | 420 | // What to call the downloaded file |
| 421 | 421 | $download_filename = $tree->name(); |
@@ -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')) { |