From f114b14c2840b40332176f493fe820a43a94585f Mon Sep 17 00:00:00 2001 From: snailcatcher <54376541+snailcatcher@users.noreply.github.com> Date: Sat, 5 Oct 2024 19:41:51 +0000 Subject: [PATCH] fix bug 493 --- system/typemill/Models/Fields.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/typemill/Models/Fields.php b/system/typemill/Models/Fields.php index 1657b22..e810559 100644 --- a/system/typemill/Models/Fields.php +++ b/system/typemill/Models/Fields.php @@ -29,7 +29,7 @@ class Fields { # if it is a fieldset, then create a subset for the containing field and read them with a recursive function $subSettings = $objectSettings; - $subSettings['forms'] = $fieldConfigurations; + $subSettings[$formType] = $fieldConfigurations; $fieldset = array(); $fieldset['type'] = 'fieldset';