Repository: cloudstack Updated Branches: refs/heads/master 5fea96fdc -> 4cb950554
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/4cb95055 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/4cb95055 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/4cb95055 Branch: refs/heads/master Commit: 4cb950554847a47169a50eef6af964f6a180fa7f Parents: 5fea96f 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:43:12 2014 -0800 ---------------------------------------------------------------------- ui/scripts/installWizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/4cb95055/ui/scripts/installWizard.js ---------------------------------------------------------------------- diff --git a/ui/scripts/installWizard.js b/ui/scripts/installWizard.js index 535f89f..e6d840a 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,