Passed
Push — develop ( cda1d6...9904e8 )
by Greg
06:21
created
app/Http/Controllers/CalendarController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -550,7 +550,7 @@
 block discarded – undo
550 550
         $html = '';
551 551
 
552 552
         foreach ($list as $id => $facts) {
553
-            $tmp  = GedcomRecord::getInstance($id, $tree);
553
+            $tmp = GedcomRecord::getInstance($id, $tree);
554 554
             $html .= $tag1 . '<a href="' . e($tmp->url()) . '">' . $tmp->fullName() . '</a> ';
555 555
             $html .= '<div class="indent">' . $facts . '</div>' . $tag2;
556 556
         }
Please login to merge, or discard this patch.
app/Functions/FunctionsEdit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -575,7 +575,7 @@
 block discarded – undo
575 575
             $html .= view('components/select', ['id' => $id, 'name' => $name, 'selected' => $value, 'values' => GedcomCodeName::getValues()]);
576 576
         } elseif ($fact === 'TYPE' && $level === '3') {
577 577
             //-- Build the selector for the Media 'TYPE' Fact
578
-            $html          .= '<select name="text[]"><option selected value="" ></option>';
578
+            $html .= '<select name="text[]"><option selected value="" ></option>';
579 579
             $selectedValue = strtolower($value);
580 580
             if (!array_key_exists($selectedValue, GedcomTag::getFileFormTypes())) {
581 581
                 $html .= '<option selected value="' . e($value) . '" >' . e($value) . '</option>';
Please login to merge, or discard this patch.
app/Module/FanChartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -344,7 +344,7 @@
 block discarded – undo
344 344
                     $html  .= '<div id="' . $person->xref() . '" class="fan_chart_menu">';
345 345
                     $html  .= '<div class="person_box"><div class="details1">';
346 346
                     $html .= '<div class="charts">';
347
-                    $html  .= '<a href="' . e($person->url()) . '" class="dropdown-item">' . $name. '</a>';
347
+                    $html  .= '<a href="' . e($person->url()) . '" class="dropdown-item">' . $name . '</a>';
348 348
                     foreach ($theme->individualBoxMenu($person) as $menu) {
349 349
                         $html .= '<a href="' . e($menu->getLink()) . '" class="dropdown-item p-1 ' . e($menu->getClass()) . '">' . $menu->getLabel() . '</a>';
350 350
                     }
Please login to merge, or discard this patch.