Compiler and co: fixed bug with 'is_null_allowed' missing

SVN:trunk[1989]
This commit is contained in:
Romain Quetiez
2012-05-14 14:19:17 +00:00
parent 7487a46888
commit 719870663a

View File

@@ -633,7 +633,7 @@ EOF;
$aParameters['allowed_values'] = 'null'; // or "new ValueSetEnum('SELECT xxxx')"
$aParameters['sql'] = $this->GetPropString($oField, 'sql', '');
$aParameters['default_value'] = $this->GetPropString($oField, 'default_value', '');
$aParameters['is_null_allowed'] = $oField->GetChildText('is_null_allowed', false);
$aParameters['is_null_allowed'] = $this->GetPropBoolean($oField, 'is_null_allowed', false);
$aParameters['depends_on'] = $sDependencies;
}