mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-12 04:31:32 +00:00
- use LetoDMS_Core_DMS::getGroup() instead of calling LetoDMS_Core_Group
constructor
This commit is contained in:
parent
780083fef9
commit
8f1fe68684
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user