mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 17:44:56 +00:00
- added new parameter 'isGuest' to constructor LetoDMS_User
This commit is contained in:
parent
877b438320
commit
a7b2e11d5c
|
@ -96,7 +96,7 @@ class LetoDMS_Group {
|
|||
$this->_users = array();
|
||||
|
||||
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["isAdmin"]);
|
||||
$user = new LetoDMS_User($row["id"], $row["login"], $row["pwd"], $row["fullName"], $row["email"], $row["language"], $row["theme"], $row["comment"], $row["isAdmin"], $row['isGuest'], $row['isHidden']);
|
||||
array_push($this->_users, $user);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user