Skip to content
Snippets Groups Projects
Commit 39dd6aba authored by David Maus's avatar David Maus
Browse files

Swallow record separator

parent 9566baae
No related branches found
No related tags found
No related merge requests found
......@@ -140,6 +140,10 @@ class PicaNormReader extends Reader
$record['fields'] []= $field;
}
}
if (!$this->feof()) {
// Swallow record separator
$this->getc();
}
return empty($record) ? false : $record;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment