mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 16:32:18 +02:00
Merge branch 'MDL-59929' of git://github.com/timhunt/moodle
This commit is contained in:
commit
68e3c5f71b
@ -620,6 +620,8 @@ $string['emaildisplayyes'] = 'Allow everyone to see my email address';
|
||||
$string['emailenable'] = 'This email address is enabled';
|
||||
$string['emailenableclick'] = 'Click here to re-enable all email being sent to this address';
|
||||
$string['emailexists'] = 'This email address is already registered.';
|
||||
$string['emailexistssignuphint'] = 'Perhaps you created an account in the past? {$a}';
|
||||
$string['emailexistshintlink'] = 'Recover forgotten username or password';
|
||||
$string['emailformat'] = 'Email format';
|
||||
$string['emailcharset'] = 'Email charset';
|
||||
$string['emailmustbereal'] = 'Note: your email address must be a real one';
|
||||
|
@ -887,7 +887,9 @@ function signup_validate_data($data, $files) {
|
||||
$errors['email'] = get_string('invalidemail');
|
||||
|
||||
} else if ($DB->record_exists('user', array('email' => $data['email']))) {
|
||||
$errors['email'] = get_string('emailexists').' <a href="forgot_password.php">'.get_string('newpassword').'?</a>';
|
||||
$errors['email'] = get_string('emailexists') . ' ' .
|
||||
get_string('emailexistssignuphint', 'moodle',
|
||||
html_writer::link(new moodle_url('/login/forgot_password.php'), get_string('emailexistshintlink')));
|
||||
}
|
||||
if (empty($data['email2'])) {
|
||||
$errors['email2'] = get_string('missingemail');
|
||||
|
Loading…
x
Reference in New Issue
Block a user