mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
CLOUDSTACK-8102: UI > Quick Install Wizard > update admin > should encode parameter value once instead of twice before sending it to API.
This commit is contained in:
parent
48e996f43e
commit
a29a1e0600
@ -35,7 +35,7 @@
|
|||||||
url: createURL('updateUser'),
|
url: createURL('updateUser'),
|
||||||
data: {
|
data: {
|
||||||
id: cloudStack.context.users[0].userid,
|
id: cloudStack.context.users[0].userid,
|
||||||
password: md5Hashed ? $.md5(args.data.password) : todb(args.data.password)
|
password: md5Hashed ? $.md5(args.data.password) : args.data.password
|
||||||
},
|
},
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
async: true,
|
async: true,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user