This commit is contained in:
Paula V. Quispe
2016-08-12 11:10:17 -04:00
parent c17ab87c94
commit 15fca7cf41
2 changed files with 5 additions and 2 deletions

View File

@@ -7060,7 +7060,10 @@ class Cases
$rows = array();
$rs->next();
while ($row = $rs->getRow()) {
$rows[$row['USR_UID']] = $row;
//In some cases the thread does not have a User Script task, Itee
if($row['USR_UID'] !== ''){
$rows[$row['USR_UID']] = $row;
}
$rs->next();
}
$response['criteria'] = $c;