BUG 8939 There's a warning when assign an user to some task SOLVED

- Showed a modification in the function getAllGroup which changes the whole structure due to commit 917a1ac704.
- Changed foreach structure to explore the new listing.
This commit is contained in:
Marco Antonio Nina
2012-04-05 16:55:09 -04:00
parent 1c3634ce75
commit 9a1c3d0b39

View File

@@ -1155,7 +1155,7 @@ class processMap {
$filter = '';
$result = $groups->getAllGroup($start,$limit,$filter);
$c = 0;
foreach ($result as $results) {
foreach ($result['rows'] as $results) {
$c++;
$oCriteria = new Criteria('workflow');
$oCriteria->addSelectColumn('COUNT(*) AS MEMBERS_NUMBER');