You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2014/07/28 16:04:17 UTC

[05/50] git commit: updated refs/heads/4.4 to d5220a8

CLOUDSTACK-6805: UI > create account > fix a bug that account creation failed when password contains # character.

(cherry picked from commit 76c71c7bc1fc0368e7d86c63107e269f34787c23)


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/90c50f0f
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/90c50f0f
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/90c50f0f

Branch: refs/heads/4.4
Commit: 90c50f0fa033d0f69ad78ecfd3186ca9c4bc07dc
Parents: ae837e3
Author: Jessica Wang <je...@apache.org>
Authored: Thu May 29 11:52:42 2014 -0700
Committer: Daan Hoogland <da...@onecht.net>
Committed: Mon Jul 28 16:02:24 2014 +0200

----------------------------------------------------------------------
 ui/scripts/accountsWizard.js | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/90c50f0f/ui/scripts/accountsWizard.js
----------------------------------------------------------------------
diff --git a/ui/scripts/accountsWizard.js b/ui/scripts/accountsWizard.js
index e02a04e..f022193 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;