mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-13 21:21:27 +00:00
- fixed error in getUsers(). 'isHidden' is not a table field. It must be 'hidden'
This commit is contained in:
parent
aaf2f1715d
commit
cbc28b7f42
|
@ -96,7 +96,7 @@ class LetoDMS_Group {
|
||||||
$this->_users = array();
|
$this->_users = array();
|
||||||
|
|
||||||
foreach ($resArr as $row) {
|
foreach ($resArr as $row) {
|
||||||
$user = new LetoDMS_User($row["id"], $row["login"], $row["pwd"], $row["fullName"], $row["email"], $row["language"], $row["theme"], $row["comment"], $row["role"], $row['isHidden']);
|
$user = new LetoDMS_User($row["id"], $row["login"], $row["pwd"], $row["fullName"], $row["email"], $row["language"], $row["theme"], $row["comment"], $row["role"], $row['hidden']);
|
||||||
array_push($this->_users, $user);
|
array_push($this->_users, $user);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user