diff --git a/html5_tools_forms/html5_tools_forms.module b/html5_tools_forms/html5_tools_forms.module index 5ae43df..e76c02a 100644 --- a/html5_tools_forms/html5_tools_forms.module +++ b/html5_tools_forms/html5_tools_forms.module @@ -56,7 +56,7 @@ function html5_tools_forms_form_search_form_alter(&$form, &$form_state) { * Implementation of hook_form_FORM_ID_alter(). */ function html5_tools_forms_form_user_register_alter(&$form, &$form_state) { - //Modify search form to a search field + //Modify user registation form to use an email field if ($form['mail']['#type'] == 'textfield') { $form['mail']['#type'] = 'emailfield'; }