Skip to content
Snippets Groups Projects
Commit 517363b9 authored by Uma's avatar Uma
Browse files

Fixes #1314 Migration bug with variable declaration

parent aacce356
No related branches found
No related tags found
1 merge request!665Fixes #1314 Migration bug with variable declaration
......@@ -705,7 +705,7 @@ echo "<br>Changed timezone column name for mail scanner";
$result = $adb->pquery('SELECT task_id FROM com_vtiger_workflowtasks WHERE workflow_id IN
(SELECT workflow_id FROM com_vtiger_workflows WHERE module_name IN (?, ?))
AND task LIKE ?', array('Calendar', 'Events', '%VTSendNotificationTask%'));
$numOfRowas = $adb->num_rows($result);
$numOfRows = $adb->num_rows($result);
for ($i = 0; $i < $numOfRows; $i++) {
$tm = new VTTaskManager($adb);
$task = $tm->retrieveTask($adb->query_result($result, $i, 'task_id'));
......
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