Merged in ronald-quentaprocessmaker/processmaker/HOR-1797 (pull request #4876)

HOR-1797
This commit is contained in:
David Callizaya
2016-09-07 17:24:17 -04:00

View File

@@ -389,7 +389,7 @@ class Dashboard extends Controller
$dataset->setFetchmode( ResultSet::FETCHMODE_ASSOC ); $dataset->setFetchmode( ResultSet::FETCHMODE_ASSOC );
$dataset->next(); $dataset->next();
while ($row = $dataset->getRow()) { while ($row = $dataset->getRow()) {
$groups[] = array ('OWNER_UID' => $row['GRP_UID'],'OWNER_NAME' => $row['CON_VALUE'] $groups[] = array ('OWNER_UID' => $row['GRP_UID'],'OWNER_NAME' => $row['GRP_TITLE']
); );
$dataset->next(); $dataset->next();
} }