@@ -63,7 +63,7 @@ |
||
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'; |
@@ -56,7 +56,7 @@ |
||
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 |