mirror of https://github.com/apache/cloudstack.git
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
5fea96fdc2
commit
4cb9505548
|
|
@ -35,7 +35,7 @@
|
|||
url: createURL('updateUser'),
|
||||
data: {
|
||||
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',
|
||||
async: true,
|
||||
|
|
|
|||
Loading…
Reference in New Issue