diff --git a/guacamole/src/main/webapp/admin.xhtml b/guacamole/src/main/webapp/admin.xhtml
index a8d284311..7bbf3454f 100644
--- a/guacamole/src/main/webapp/admin.xhtml
+++ b/guacamole/src/main/webapp/admin.xhtml
@@ -85,6 +85,11 @@
var user_manager = new GuacAdmin.UserManager();
users.appendChild(user_manager.getElement());
+ user_manager.onsave = function(id, password, connections) {
+ console.log(id, password, connections);
+ return true;
+ };
+
]]>