Merge branch '1.0.x' into testing
This commit is contained in:
commit
c7511094db
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user