lanthaler / JsonLD

JSON-LD processor for PHP
MIT License
335 stars 62 forks source link

Fix for linebreaks in NQuads parser #63

Closed LukasRos closed 8 years ago

LukasRos commented 9 years ago

There was a bug in the NQuads parser's end-of-line Regex which would treat the pipe symbol (|) as a linebreak; this issue causes problems when this symbol is part of a string literal because it will split and thus invalidate the whole quad and cause an error. This PR fixes that.

lanthaler commented 8 years ago

Thanks Lukas!