Skip to content
Snippets Groups Projects
Verified Commit 153ff60e authored by Pavel Vyskočil's avatar Pavel Vyskočil
Browse files

fix: use the correct order in merging map attributes

parent ff4e91c2
No related branches found
No related tags found
1 merge request!315fix: use the correct order in merging map attributes
Pipeline #325837 passed
...@@ -168,7 +168,7 @@ class UESUpdateHelper ...@@ -168,7 +168,7 @@ class UESUpdateHelper
strpos($attribute[self::TYPE], self::MAP_TYPE) || strpos($attribute[self::TYPE], self::MAP_TYPE) ||
!in_array($attrName, $serializedAttributes, true) !in_array($attrName, $serializedAttributes, true)
) { ) {
$attr = array_merge($attr, $attribute[self::VALUE]); $attr = array_merge($attribute[self::VALUE], $attr);
} else { } else {
$attr = array_merge($attr, explode(';', $attribute[self::VALUE])); $attr = array_merge($attr, explode(';', $attribute[self::VALUE]));
} }
......
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