Repository: cloudstack Updated Branches: refs/heads/4.5 48e996f43 -> a29a1e060
CLOUDSTACK-8102: UI > Quick Install Wizard > update admin > should encode parameter value once instead of twice before sending it to API. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/a29a1e06 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/a29a1e06 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/a29a1e06 Branch: refs/heads/4.5 Commit: a29a1e0600a31476f219769e90bb582f243ef32e Parents: 48e996f Author: Jessica Wang <jessicaw...@apache.org> Authored: Fri Dec 19 15:41:42 2014 -0800 Committer: Jessica Wang <jessicaw...@apache.org> Committed: Fri Dec 19 15:41:42 2014 -0800 ---------------------------------------------------------------------- ui/scripts/installWizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/a29a1e06/ui/scripts/installWizard.js ---------------------------------------------------------------------- diff --git a/ui/scripts/installWizard.js b/ui/scripts/installWizard.js index 85eaff0..42f9a80 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,