Passed
Push — master ( 1aadd4...aad2fa )
by Greg
05:20
created
app/Http/RequestHandlers/EditRawRecordAction.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         switch ($record::RECORD_TYPE) {
64 64
             case GedcomRecord::RECORD_TYPE:
65 65
                 // Unknown type? - copy the existing data.
66
-                $gedcom = explode("\n", $record->gedcom(),2)[0];
66
+                $gedcom = explode("\n", $record->gedcom(), 2)[0];
67 67
                 break;
68 68
             case Header::RECORD_TYPE:
69 69
                 $gedcom = '0 HEAD';
Please login to merge, or discard this patch.
app/Http/RequestHandlers/EditRawRecordPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
         $record = Auth::checkRecordAccess($record, true);
57 57
 
58 58
         // Do not allow users to edit the first line.  Changing the type will break things.
59
-        $level0 = explode("\n", $record->gedcom(),2)[0];
59
+        $level0 = explode("\n", $record->gedcom(), 2)[0];
60 60
 
61 61
         $title = I18N::translate('Edit the raw GEDCOM') . ' - ' . $record->fullName();
62 62
 
Please login to merge, or discard this patch.