BUG 5449 Importación de un Proceso error al importar un archivo diferente.

this issue was fixedº
This commit is contained in:
Carlos Pacha
2011-08-25 17:45:15 -04:00
parent fb82e2f3a2
commit 45157ab2e1

View File

@@ -2600,14 +2600,15 @@ class Processes {
$oDataset->next();
}
//check if any group name exists in the dbase
foreach ($aGroupwf as $groupBase){
foreach ($sGroupList as $group){
if($groupBase['CON_VALUE']==$group['GRP_TITLE']&&$groupBase['CON_ID']!=$group['GRP_UID']){
$existingGroupList[]=$group;
}
}
if(is_array($sGroupList)){
foreach ($aGroupwf as $groupBase){
foreach ($sGroupList as $group){
if($groupBase['CON_VALUE']==$group['GRP_TITLE']&&$groupBase['CON_ID']!=$group['GRP_UID']){
$existingGroupList[]=$group;
}
}
}
}
//return $sGroupList;
if (isset($existingGroupList))
return $existingGroupList;