MDL-46976 user: trim whitespace from input email address
Don't complain about invalid email address, we are a computer, we love the jobs users hate. ref: https://www.youtube.com/watch?v=5tquSbZEP-g
This commit is contained in:
@@ -54,7 +54,7 @@ class login_forgot_password_form extends moodleform {
|
||||
$mform->addElement('header', 'searchbyemail', get_string('searchbyemail'), '');
|
||||
|
||||
$mform->addElement('text', 'email', get_string('email'));
|
||||
$mform->setType('email', PARAM_RAW);
|
||||
$mform->setType('email', PARAM_RAW_TRIMMED);
|
||||
|
||||
$submitlabel = get_string('search');
|
||||
$mform->addElement('submit', 'submitbuttonemail', $submitlabel);
|
||||
|
||||
@@ -53,11 +53,11 @@ class login_signup_form extends moodleform {
|
||||
$mform->addElement('header', 'supplyinfo', get_string('supplyinfo'),'');
|
||||
|
||||
$mform->addElement('text', 'email', get_string('email'), 'maxlength="100" size="25"');
|
||||
$mform->setType('email', PARAM_NOTAGS);
|
||||
$mform->setType('email', PARAM_RAW_TRIMMED);
|
||||
$mform->addRule('email', get_string('missingemail'), 'required', null, 'server');
|
||||
|
||||
$mform->addElement('text', 'email2', get_string('emailagain'), 'maxlength="100" size="25"');
|
||||
$mform->setType('email2', PARAM_NOTAGS);
|
||||
$mform->setType('email2', PARAM_RAW_TRIMMED);
|
||||
$mform->addRule('email2', get_string('missingemail'), 'required', null, 'server');
|
||||
|
||||
$namefields = useredit_get_required_name_fields();
|
||||
|
||||
+1
-1
@@ -215,7 +215,7 @@ function useredit_shared_definition(&$mform, $editoroptions = null, $filemanager
|
||||
} else {
|
||||
$mform->addElement('text', 'email', get_string('email'), 'maxlength="100" size="30"');
|
||||
$mform->addRule('email', $strrequired, 'required', null, 'client');
|
||||
$mform->setType('email', PARAM_EMAIL);
|
||||
$mform->setType('email', PARAM_RAW_TRIMMED);
|
||||
}
|
||||
|
||||
$choices = array();
|
||||
|
||||
Reference in New Issue
Block a user