Passed
Push — master ( 3574e2...2cebb4 )
by Greg
06:18
created
app/Functions/FunctionsPrint.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
                     if ($note->canShow()) {
137 137
                         $noterec = $note->gedcom();
138 138
                         $nt      = preg_match("/0 @$nmatch[1]@ NOTE (.*)/", $noterec, $n1match);
139
-                        $data    .= self::printNoteRecord($tree, $nt > 0 ? $n1match[1] : '', 1, $noterec);
139
+                        $data .= self::printNoteRecord($tree, $nt > 0 ? $n1match[1] : '', 1, $noterec);
140 140
                     }
141 141
                 } else {
142 142
                     $data = '<div class="fact_NOTE"><span class="label">' . I18N::translate('Note') . '</span>: <span class="field error">' . $nmatch[1] . '</span></div>';
@@ -335,20 +335,20 @@  discard block
 block discarded – undo
335 335
                 if (preg_match_all('/\n3 (?:_HEB|ROMN) (.+)/', $placerec, $matches)) {
336 336
                     foreach ($matches[1] as $match) {
337 337
                         $wt_place = new Place($match, $tree);
338
-                        $html     .= ' - ' . $wt_place->fullName();
338
+                        $html .= ' - ' . $wt_place->fullName();
339 339
                     }
340 340
                 }
341 341
                 $map_lati = '';
342 342
                 $cts      = preg_match('/\d LATI (.*)/', $placerec, $match);
343 343
                 if ($cts > 0) {
344 344
                     $map_lati = $match[1];
345
-                    $html     .= '<br><span class="label">' . I18N::translate('Latitude') . ': </span>' . $map_lati;
345
+                    $html .= '<br><span class="label">' . I18N::translate('Latitude') . ': </span>' . $map_lati;
346 346
                 }
347 347
                 $map_long = '';
348 348
                 $cts      = preg_match('/\d LONG (.*)/', $placerec, $match);
349 349
                 if ($cts > 0) {
350 350
                     $map_long = $match[1];
351
-                    $html     .= ' <span class="label">' . I18N::translate('Longitude') . ': </span>' . $map_long;
351
+                    $html .= ' <span class="label">' . I18N::translate('Longitude') . ': </span>' . $map_long;
352 352
                 }
353 353
                 if ($map_lati && $map_long) {
354 354
                     $map_lati = trim(strtr($map_lati, 'NSEW,�', ' - -. ')); // S5,6789 ==> -5.6789
Please login to merge, or discard this patch.