* [DEV] UI tweaks

* [DEV] Fixed account ACL bug
This commit is contained in:
nuxsmin
2016-11-23 02:21:30 +01:00
committed by Rubén Domínguez
parent 845bc6857c
commit 64eb635baf
31 changed files with 252 additions and 1415 deletions

View File

@@ -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;
}
/**