BUG 6512 SOLVED.

Fixed notice and warning about events.
This commit is contained in:
Enrique Ponce De Leon
2011-04-11 18:24:27 -04:00
parent 7dbe5397d4
commit ca12784306
2 changed files with 10 additions and 3 deletions

View File

@@ -149,9 +149,10 @@ class Event extends BaseEvent {
//start the transaction
$oConnection->begin();
if($aData['EVN_TYPE']==='bpmnEventEmptyEnd')
unset($aData['TRI_UID']);
if (isset($aData['EVN_TYPE'])){
if($aData['EVN_TYPE']==='bpmnEventEmptyEnd')
unset($aData['TRI_UID']);
}
if(isset($aData['TRI_UID']))
{
$oTrigger = new Triggers();