Do not include '@' for empty language tag.

pull/1/head
Dave Longley 10 years ago
parent 8a0eb2150e
commit 8c0319895c

@ -1638,7 +1638,9 @@ class JsonLdProcessor {
$o->value);
$quad .= '"' . $escaped . '"';
if($o->datatype === self::RDF_LANGSTRING) {
$quad .= "@{$o->language}";
if($o->language) {
$quad .= "@{$o->language}";
}
}
else if($o->datatype !== self::XSD_STRING) {
$quad .= "^^<{$o->datatype}>";

Loading…
Cancel
Save