- use new role field in class LetoDMS_User

This commit is contained in:
steinm 2010-12-05 20:30:36 +00:00
parent 4fc45c65ae
commit f23b030ef0

View File

@ -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["isAdmin"], $row['isGuest'], $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['isHidden']);
array_push($this->_users, $user); array_push($this->_users, $user);
} }
} }