Fix broken event names

This commit is contained in:
Zach Copley 2011-04-27 17:40:51 -07:00
parent bfc3cc9461
commit 8cc5c175da

View 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));
}
}