From a997e528ec71d1b824e7688d23e530eac27d86cd Mon Sep 17 00:00:00 2001 From: "denis.flaven@combodo.com" Date: Thu, 1 Apr 2021 18:13:18 +0200 Subject: [PATCH] Internal regression, enum fields not created in data synchro tables --- core/attributedef.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index 4cd87e1a2..5c3b415b0 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -5314,7 +5314,7 @@ class AttributeEnum extends AttributeString // Right now the function is not passed the "target" SQL table, but if we improve this in the future // we may call $this->GetSQLColHelper(true, true, $sDBTable); to take into account the actual 'enum' values // in this table - return $this->GetSQLColHelper(true, false); + return array($this->GetCode() => $this->GetSQLColHelper(true, false)); } /**