Fixing many issues related to password hash method changed

This commit is contained in:
Julio Cesar Laura
2014-10-02 17:21:33 -04:00
parent e6eb308515
commit 0448d0e6db
6 changed files with 8 additions and 8 deletions

View File

@@ -336,7 +336,7 @@ class ProjectUser
$params = array(
"userid" => $username,
"password" => "md5:" . md5($password)
"password" => Bootstrap::hashPassword($password, '', true)
);
$response = $client->login($params);