Fixed Regression introduced with the rework of N-N links (bug when creating software instances on a server)

SVN:trunk[4772]
This commit is contained in:
Romain Quetiez
2017-06-27 14:18:28 +00:00
parent 8451ffdfb4
commit 7e38d4be50

View File

@@ -3228,7 +3228,7 @@ EOF
foreach($aRawToBeCreated as $aData)
{
$sSubFormPrefix = $aData['formPrefix'];
$sObjClass = $oAttDef->GetLinkedClass();
$sObjClass = isset($aData['class']) ? $aData['class'] : $oAttDef->GetLinkedClass();
$aObjData = array();
foreach($aData as $sKey => $value)
{