- use LetoDMS_Core_DMS::getGroup() instead of calling LetoDMS_Core_Group

constructor
This commit is contained in:
steinm 2011-02-08 09:00:32 +00:00
parent 780083fef9
commit 8f1fe68684

View File

@ -1071,7 +1071,8 @@ class LetoDMS_Core_Folder {
$resArr = $db->getResultArray($queryStr);
if (!is_bool($resArr)) {
foreach ($resArr as $row) {
$this->_approversList["groups"][] = new LetoDMS_Core_Group($row["id"], $row["name"], $row["comment"]);
$group = $this->_dms->getGroup($row["id"]);
$this->_approversList["groups"][] = $group;
}
}
}