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);

View File

@@ -396,7 +396,7 @@ class WebEntry
$template->assign("dynaformUid", $dynaFormUid);
$template->assign("taskUid", $taskUid);
$template->assign("wsUser", $usrUsername);
$template->assign("wsPass", "md5:" . $usrPassword);
$template->assign("wsPass", Bootstrap::hashPassword($usrPassword, '', true));
$template->assign("wsRoundRobin", $wsRoundRobin);
if ($webEntryInputDocumentAccess == 0) {