Updated edit user screen so you can now update details

This commit is contained in:
laf
2014-03-10 23:50:16 +00:00
parent 6c64e98bdf
commit 8cf255072c
4 changed files with 233 additions and 29 deletions

View File

@@ -163,4 +163,22 @@ function get_userlist()
return $userlist;
}
function can_update_usesr()
{
# not supported so return 0
return 0;
}
function get_user($user_id)
{
# not supported
return 0;
}
function update_user($user_id,$realname,$level,$can_modify_passwd,$email)
{
# not supported
return 0;
}
?>