BUG 12307 Notice cuando se inicia un caso SOLVED
- Comportamiento actual. Cuando se incia un caso con un proceso cualquiera, se muestra un notice:Notice: Undefined index: TRIGGER_DEBUG - Validation the TRIGGER_DEBUG field when running a case.
This commit is contained in:
@@ -188,7 +188,7 @@ $aRequiredFields = array(
|
|||||||
'PROCESS' => $Fields['APP_DATA']['PROCESS'],
|
'PROCESS' => $Fields['APP_DATA']['PROCESS'],
|
||||||
'TASK' => $Fields['APP_DATA']['TASK'],
|
'TASK' => $Fields['APP_DATA']['TASK'],
|
||||||
'INDEX' => $Fields['APP_DATA']['INDEX'],
|
'INDEX' => $Fields['APP_DATA']['INDEX'],
|
||||||
'TRIGGER_DEBUG' => $Fields['APP_DATA']['TRIGGER_DEBUG']
|
'TRIGGER_DEBUG' => isset($Fields['APP_DATA']['TRIGGER_DEBUG']) ? $Fields['APP_DATA']['TRIGGER_DEBUG']:array()
|
||||||
);
|
);
|
||||||
|
|
||||||
$oHeadPublisher->addScriptCode('var __dynaformSVal__ = \'' . base64_encode(serialize($aRequiredFields)) . '\'; ');
|
$oHeadPublisher->addScriptCode('var __dynaformSVal__ = \'' . base64_encode(serialize($aRequiredFields)) . '\'; ');
|
||||||
|
|||||||
Reference in New Issue
Block a user