You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cloudstack.apache.org by olgasmola <ol...@gmail.com> on 2012/06/29 12:30:40 UTC

[PATCH] CS-15392: Fix incorrect results when edit user.

---
 ui/scripts/accounts.js |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/ui/scripts/accounts.js b/ui/scripts/accounts.js
index 6f30963..0044659 100644
--- a/ui/scripts/accounts.js
+++ b/ui/scripts/accounts.js
@@ -797,6 +797,9 @@
                     success: function(json) {
                       var item = json.updateuserresponse.user;
                       args.response.success({data:item});
+                    },
+                    error: function(data) {
+                      args.response.error(parseXMLHttpResponse(data));
                     }
                   });
 
-- 
1.7.10.msysgit.1