@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | if ($kcount == 0) { |
298 | 298 | echo "</td><td style='width:", app(ModuleThemeInterface::class)->parameter('chart-box-x'), "px'>"; |
299 | 299 | } else { |
300 | - echo '<a href="#" title="' . I18N::translate('Children') . '" data-route="Descendants" data-xref="' . e($pid) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($individual->tree()->name()) . '">' . view('icons/arrow-left') . '</a>'; |
|
300 | + echo '<a href="#" title="' . I18N::translate('Children') . '" data-route="Descendants" data-xref="' . e($pid) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($individual->tree()->name()) . '">' . view('icons/arrow-left') . '</a>'; |
|
301 | 301 | |
302 | 302 | //-- move the arrow up to line up with the correct box |
303 | 303 | if ($show_spouse) { |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | } |
379 | 379 | |
380 | 380 | // filter out root person from children array so only siblings remain |
381 | - $siblings = $family->children()->filter(static function (Individual $x) use ($individual): bool { |
|
381 | + $siblings = $family->children()->filter(static function (Individual $x) use ($individual): bool { |
|
382 | 382 | return $x !== $individual; |
383 | 383 | }); |
384 | 384 | |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | echo '<td id="td_' . e($ARID) . '">'; |
452 | 452 | |
453 | 453 | if ($generation == $generations - 1 && $family->husband()->childFamilies()) { |
454 | - echo '<a href="#" title="' . I18N::translate('Parents') . '" data-route="Ancestors" data-xref="' . e($ARID) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($family->husband()->tree()->name()) . '">' . view('icons/arrow-right') . '</a>'; |
|
454 | + echo '<a href="#" title="' . I18N::translate('Parents') . '" data-route="Ancestors" data-xref="' . e($ARID) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($family->husband()->tree()->name()) . '">' . view('icons/arrow-right') . '</a>'; |
|
455 | 455 | } |
456 | 456 | |
457 | 457 | $this->printPersonPedigree($family->husband(), $generation + 1, $generations, $show_spouse); |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | echo '<td id="td_' . e($ARID) . '">'; |
483 | 483 | |
484 | 484 | if ($generation == $generations - 1 && $family->wife()->childFamilies()) { |
485 | - echo '<a href="#" title="' . I18N::translate('Parents') . '" data-route="Ancestors" data-xref="' . e($ARID) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($family->wife()->tree()->name()) . '">' . view('icons/arrow-right') . '</a>'; |
|
485 | + echo '<a href="#" title="' . I18N::translate('Parents') . '" data-route="Ancestors" data-xref="' . e($ARID) . '" data-spouses="' . e($show_spouse) . '" data-tree="' . e($family->wife()->tree()->name()) . '">' . view('icons/arrow-right') . '</a>'; |
|
486 | 486 | } |
487 | 487 | |
488 | 488 | $this->printPersonPedigree($family->wife(), $generation + 1, $generations, $show_spouse); |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | |
259 | 259 | // Create a source, to indicate the source of the data. |
260 | 260 | $filetext .= "0 @WEBTREES@ SOUR\n1 TITL " . WT_BASE_URL . "\n"; |
261 | - $author = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID')); |
|
261 | + $author = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID')); |
|
262 | 262 | if ($author !== null) { |
263 | 263 | $filetext .= '1 AUTH ' . $author->realName() . "\n"; |
264 | 264 | } |
@@ -277,7 +277,7 @@ discard block |
||
277 | 277 | // Need to force-close the filesystem |
278 | 278 | unset($zip_filesystem); |
279 | 279 | |
280 | - $stream = app(StreamFactoryInterface::class)->createStreamFromFile($temp_zip_file); |
|
280 | + $stream = app(StreamFactoryInterface::class)->createStreamFromFile($temp_zip_file); |
|
281 | 281 | |
282 | 282 | return app(ResponseFactoryInterface::class) |
283 | 283 | ->createResponse() |