Fixed bug #102: allow users to change their password.

SVN:trunk[532]
This commit is contained in:
Denis Flaven
2010-07-02 11:23:59 +00:00
parent 75c1287ad1
commit aa3357fe78
8 changed files with 170 additions and 4 deletions

View File

@@ -51,6 +51,16 @@ class UserRightsNull extends UserRightsAddOnAPI
{
return 1;
}
public function CanChangePassword()
{
return true;
}
public function ChangePassword($iUserId, $sOldPassword, $sNewPassword)
{
return true;
}
public function GetUserId($sUserName)
{