From a29a1e0600a31476f219769e90bb582f243ef32e Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Fri, 19 Dec 2014 15:41:42 -0800 Subject: [PATCH] CLOUDSTACK-8102: UI > Quick Install Wizard > update admin > should encode parameter value once instead of twice before sending it to API. --- ui/scripts/installWizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/installWizard.js b/ui/scripts/installWizard.js index 85eaff00c3f..42f9a8031df 100644 --- a/ui/scripts/installWizard.js +++ b/ui/scripts/installWizard.js @@ -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,