Fixing many issues related to password hash method changed
This commit is contained in:
@@ -336,7 +336,7 @@ class ProjectUser
|
||||
|
||||
$params = array(
|
||||
"userid" => $username,
|
||||
"password" => "md5:" . md5($password)
|
||||
"password" => Bootstrap::hashPassword($password, '', true)
|
||||
);
|
||||
|
||||
$response = $client->login($params);
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user