- fixed error in getUsers(). 'isHidden' is not a table field. It must be 'hidden'

This commit is contained in:
steinm 2010-12-14 14:15:16 +00:00
parent aaf2f1715d
commit cbc28b7f42

View File

@ -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["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);
}
}