Merge remote-tracking branch 'upstream/3.1' into HOR-1602

This commit is contained in:
dheeyi william
2016-08-12 14:37:19 -04:00
9 changed files with 36 additions and 11 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;