]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix broken event names
authorZach Copley <zach@status.net>
Thu, 28 Apr 2011 00:40:51 +0000 (17:40 -0700)
committerZach Copley <zach@status.net>
Thu, 28 Apr 2011 00:40:51 +0000 (17:40 -0700)
actions/register.php

index 47ac062713860473b6363426f1bfb55a1ebebb09..3fe5e20a131479d94d4818ff9e3e7b6692c84a5f 100644 (file)
@@ -270,11 +270,11 @@ class RegisterAction extends Action
                     common_rememberme($user);
                 }
 
-                Event::handle('EndRegistrationTry', array($this));
-
                 // Re-init language env in case it changed (not yet, but soon)
                 common_init_language();
 
+                Event::handle('EndRegistrationTry', array($this));
+
                 $this->showSuccess();
             } else {
                 // TRANS: Form validation error displayed when trying to register with an invalid username or password.
@@ -605,7 +605,7 @@ class RegisterAction extends Action
      */
     function showSuccessContent()
     {
-        if (Event::handle('onStartRegisterSuccess', array($this))) {
+        if (Event::handle('StartRegisterSuccess', array($this))) {
             $nickname = $this->arg('nickname');
 
             $profileurl = common_local_url('showstream',
@@ -649,7 +649,7 @@ class RegisterAction extends Action
             }
             $this->elementEnd('div');
 
-            Event::handle('onEndRegisterSuccess', array($this));
+            Event::handle('EndRegisterSuccess', array($this));
         }
     }