mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-12 03:16:54 +01:00
* [DEV] UI tweaks
* [DEV] Fixed account ACL bug
This commit is contained in:
@@ -220,7 +220,7 @@ class UserData extends UserPassData implements DataModelInterface
|
||||
*/
|
||||
public function getUserGroupId()
|
||||
{
|
||||
return $this->user_groupId;
|
||||
return (int)$this->user_groupId;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -228,7 +228,7 @@ class UserData extends UserPassData implements DataModelInterface
|
||||
*/
|
||||
public function setUserGroupId($user_groupId)
|
||||
{
|
||||
$this->user_groupId = $user_groupId;
|
||||
$this->user_groupId = (int)$user_groupId;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user