forked from friendica/php-json-ld
Do not compact to @language map when @index is present.
This commit is contained in:
parent
fda8545943
commit
5961e603aa
|
@ -3886,7 +3886,8 @@ class JsonLdProcessor {
|
|||
}
|
||||
else {
|
||||
if(self::_isValue($value)) {
|
||||
if(property_exists($value, '@language')) {
|
||||
if(property_exists($value, '@language') &&
|
||||
!property_exists($value, '@index')) {
|
||||
$containers[] = '@language';
|
||||
$type_or_language_value = $value->{'@language'};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue