Merge pull request #10597 from annando/warning
Fixes "PHP Warning: key() expects parameter 1 to be array, string given"
This commit is contained in:
commit
a364436623
|
@ -193,7 +193,7 @@ class JsonLD
|
||||||
}
|
}
|
||||||
|
|
||||||
// If it isn't an array yet, make it to one
|
// If it isn't an array yet, make it to one
|
||||||
if (!is_int(key($array[$element]))) {
|
if (!is_array($array[$element]) || !is_int(key($array[$element]))) {
|
||||||
$array[$element] = [$array[$element]];
|
$array[$element] = [$array[$element]];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user