summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmmanuel ROHEE <erohee@amdocs.com>2014-09-04 14:04:35 +0200
committerPaul "LeoNerd" Evans <paul@matrix.org>2014-09-04 13:15:09 +0100
commit9faf7807400c83e51f2be8ae1174e4401cb3c67e (patch)
treee88c82f0b445091fbf23d0ba55aff699699fdf91
parentMerge branch 'develop' of github.com:matrix-org/synapse (diff)
downloadsynapse-9faf7807400c83e51f2be8ae1174e4401cb3c67e.tar.xz
Fixed registration flow when registering with matrixID & password and no email
-rw-r--r--webclient/login/register-controller.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webclient/login/register-controller.js b/webclient/login/register-controller.js
index b7584a7d33..5a14964248 100644
--- a/webclient/login/register-controller.js
+++ b/webclient/login/register-controller.js
@@ -82,7 +82,7 @@ angular.module('RegisterController', ['matrixService'])
                 }
             );
         } else {
-            registerWithMxidAndPassword($scope.account.desired_user_id, $scope.account.pwd1);
+            $scope.registerWithMxidAndPassword($scope.account.desired_user_id, $scope.account.pwd1);
         }
     };