1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-17 20:11:46 +02:00
This commit is contained in:
Ryan Cramer
2022-11-10 11:52:59 -05:00
parent 5aa0126b39
commit aa842d8741

View File

@@ -512,7 +512,7 @@ class Field extends WireData implements Saveable, Exportable {
if($this->type) { if($this->type) {
$typeData = $this->type->exportConfigData($this, $data); $typeData = $this->type->exportConfigData($this, $data);
$data = array_merge($data, $typeData); $data = array_merge($typeData, $data); // argument order reversed per #1638
} }
// remove named flags from data since the 'flags' property already covers them // remove named flags from data since the 'flags' property already covers them