Skip to content
Snippets Groups Projects
Commit 1428a548 authored by Prasad's avatar Prasad
Browse files

Fixes #1671: Handle default value for workflow test column

parent b8fd0516
No related branches found
No related tags found
No related merge requests found
......@@ -48,13 +48,13 @@ class VTWorkflowManager{
$adb->pquery("insert into com_vtiger_workflows
(workflow_id, module_name, summary, test, execution_condition, type, defaultworkflow, filtersavedinnew,
schtypeid, schtime, schdayofmonth, schdayofweek, schannualdates, nexttrigger_time, status, workflowname) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)",
array($workflowId, $wf->moduleName, $wf->description, $wf->test, $wf->executionCondition, $wf->type, $wf->defaultworkflow, $wf->filtersavedinnew,
array($workflowId, $wf->moduleName, $wf->description, ($wf->test?$wf->test:'[]'), $wf->executionCondition, $wf->type, $wf->defaultworkflow, $wf->filtersavedinnew,
$wf->schtypeid, $wf->schtime, $wf->schdayofmonth, $wf->schdayofweek, $wf->schannualdates, $wf->nexttrigger_time, $wf->status, $wf->name));
} else {
$adb->pquery("insert into com_vtiger_workflows
(workflow_id, module_name, summary, test, execution_condition, defaultworkflow,filtersavedinnew,
schtypeid, schtime, schdayofmonth, schdayofweek, schannualdates, nexttrigger_time, status, workflowname) values (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)",
array($workflowId, $wf->moduleName, $wf->description, $wf->test, $wf->executionCondition, $wf->defaultworkflow, $wf->filtersavedinnew,
array($workflowId, $wf->moduleName, $wf->description, ($wf->test?$wf->test:'[]'), $wf->executionCondition, $wf->defaultworkflow, $wf->filtersavedinnew,
$wf->schtypeid, $wf->schtime, $wf->schdayofmonth, $wf->schdayofweek, $wf->schannualdates, $wf->nexttrigger_time, $wf->status, $wf->name));
}
}
......@@ -723,4 +723,4 @@ class Workflow{
return $nextTime;
}
}
?>
\ No newline at end of file
?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment