From 128a237392b7946842e7a3db487193a2fbc36dbd Mon Sep 17 00:00:00 2001 From: Eric Date: Thu, 13 Feb 2020 12:31:22 +0100 Subject: [PATCH] =?UTF-8?q?N=C2=B02746=20-=20Fix=20Tags=20configuration=20?= =?UTF-8?q?screen=20(removed=20EnumSet=20from=20tag=20editable=20list)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/compiler.class.inc.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/setup/compiler.class.inc.php b/setup/compiler.class.inc.php index 240133716..610d37ac7 100644 --- a/setup/compiler.class.inc.php +++ b/setup/compiler.class.inc.php @@ -1517,7 +1517,6 @@ EOF } elseif ($sAttType == 'AttributeClassAttCodeSet') { - $aTagFieldsInfo[] = $sAttCode; $aParameters['allowed_values'] = 'null'; // or "new ValueSetEnum('SELECT xxxx')" $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql'); $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false); @@ -1531,7 +1530,6 @@ EOF } elseif ($sAttType == 'AttributeEnumSet') { - $aTagFieldsInfo[] = $sAttCode; $oValues = $oField->GetUniqueElement('values'); $oValueNodes = $oValues->getElementsByTagName('value'); $aValues = array(); @@ -1549,7 +1547,6 @@ EOF } elseif ($sAttType == 'AttributeQueryAttCodeSet') { - $aTagFieldsInfo[] = $sAttCode; $aParameters['allowed_values'] = 'null'; // or "new ValueSetEnum('SELECT xxxx')" $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql'); $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false); @@ -1559,7 +1556,6 @@ EOF } elseif ($sAttType == 'AttributeClassState') { - $aTagFieldsInfo[] = $sAttCode; $aParameters['allowed_values'] = 'null'; // or "new ValueSetEnum('SELECT xxxx')" $aParameters['sql'] = $this->GetMandatoryPropString($oField, 'sql'); $aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);