Merge branch '1.0.x' into testing

This commit is contained in:
Evan Prodromou 2011-05-04 18:45:23 -07:00
commit c7511094db
1 changed files with 2 additions and 3 deletions

View File

@ -262,7 +262,6 @@ class EmailregisterAction extends Action
if (!$this->tos) {
// TRANS: Error text when trying to register without agreeing to the terms.
$this->error = _m('You must accept the terms of service and privacy policy to register.');
return;
} else if (empty($this->password1)) {
// TRANS: Error text when trying to register without a password.
$this->error = _m('You must set a password');
@ -276,7 +275,7 @@ class EmailregisterAction extends Action
if (!empty($this->error)) {
$nickname = $this->nicknameFromEmail($email);
$this->form = new ConfirmRegistrationForm($this, $nickname, $this->email, $this->code);
$this->form = new ConfirmRegistrationForm($this, $nickname, $email, $this->code);
$this->showPage();
return;
}
@ -291,7 +290,7 @@ class EmailregisterAction extends Action
} catch (ClientException $e) {
$this->error = $e->getMessage();
$nickname = $this->nicknameFromEmail($email);
$this->form = new ConfirmRegistrationForm($this, $nickname, $this->email, $this->code);
$this->form = new ConfirmRegistrationForm($this, $nickname, $email, $this->code);
$this->showPage();
return;
}