mirror of https://github.com/apache/cloudstack.git
cloudstack 3.0 UI - account page - create account action - encrypt password even md5-hashed is off before passing it to API call.
This commit is contained in:
parent
eb0caf10a2
commit
5ccca40067
|
|
@ -181,6 +181,8 @@
|
|||
var password = args.data.password;
|
||||
if (md5Hashed)
|
||||
password = $.md5(password);
|
||||
else
|
||||
password = todb(password);
|
||||
array1.push("&password=" + password);
|
||||
|
||||
array1.push("&email=" + todb(args.data.email));
|
||||
|
|
|
|||
Loading…
Reference in New Issue