Fixed non openid registration

darcs-hash:20080713024754-533db-af3dbd6186df4ce27caa7c25d0752d3e7afa184a.gz
This commit is contained in:
Mike Cochrane 2008-07-12 22:47:54 -04:00
parent 11df464ec4
commit 800c2e9a09
1 changed files with 1 additions and 2 deletions

View File

@ -63,8 +63,7 @@ class RegisterAction extends Action {
$this->show_form(_('Email address already exists.'));
} else if ($password != $confirm) {
$this->show_form(_('Passwords don\'t match.'));
} else if ($this->register_user($nickname, $password, $email)) {
$user = $this->register_user($nickname, $password, $email);
} else if ($user = $this->register_user($nickname, $password, $email)) {
if (!$user) {
$this->show_form(_('Invalid username or password.'));
return;