X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fregister.php;h=3fe5e20a131479d94d4818ff9e3e7b6692c84a5f;hb=c97048d01bea468e0cf8865b60c3c250b4515c39;hp=47ac062713860473b6363426f1bfb55a1ebebb09;hpb=55b58f0f1fc80d42b232369933c6d3d13cf84aec;p=quix0rs-gnu-social.git diff --git a/actions/register.php b/actions/register.php index 47ac062713..3fe5e20a13 100644 --- a/actions/register.php +++ b/actions/register.php @@ -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)); } }