Skip to content
Snippets Groups Projects

fix: use the correct order in merging map attributes

Merged Pavel Vyskočil requested to merge fix_merge_map_attrs into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -168,7 +168,7 @@ class UESUpdateHelper
strpos($attribute[self::TYPE], self::MAP_TYPE) ||
!in_array($attrName, $serializedAttributes, true)
) {
$attr = array_merge($attr, $attribute[self::VALUE]);
$attr = array_merge($attribute[self::VALUE], $attr);
} else {
$attr = array_merge($attr, explode(';', $attribute[self::VALUE]));
}
Loading