From 9f4d4646408d12d4ce7a55aa89d6e8a6914b108e Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Thu, 29 May 2014 12:58:47 -0700 Subject: [PATCH] CLOUDSTACK-6805: UI > create account > fix a bug that account creation failed when password contains # character. --- ui/scripts/accountsWizard.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/scripts/accountsWizard.js b/ui/scripts/accountsWizard.js index e02a04eea85..f0221932706 100644 --- a/ui/scripts/accountsWizard.js +++ b/ui/scripts/accountsWizard.js @@ -182,6 +182,8 @@ password = args.data.password; if (md5Hashed) { password = $.md5(password); + } else { + password = todb(password); } array1.push("&password=" + password); } @@ -218,6 +220,7 @@ $.ajax({ url: createURL('importLdapUsers' + array1.join("")), dataType: "json", + type: "POST", async: false, success: function(json) { var count = json.ldapuserresponse.count; @@ -233,6 +236,7 @@ $.ajax({ url: createURL('ldapCreateAccount' + array1.join("")), dataType: "json", + type: "POST", async: false, success: function(json) { var item = json.createaccountresponse.account; @@ -249,6 +253,7 @@ $.ajax({ url: createURL('createAccount' + array1.join("")), dataType: "json", + type: "POST", async: false, success: function(json) { var item = json.createaccountresponse.account;