Hi - nice module, thanks!!

Just to let you know that I needed to add the following as I am using the above module.

/**
 * Implementation of hook_form_FORM_ID_alter() for user_register.
 */
function clear_password_field_form_password_policy_password_tab_alter(&$form, &$form_state) {
  if (variable_get('clear_password_field', 1) == 1) {
    drupal_add_js(drupal_get_path('module', 'clear_password_field') . '/clear_password_field_edit.js');
  }
}

Cheers,
Crom

Comments

vkareh’s picture

Version: 6.x-1.2 » 7.x-1.2
Status: Active » Fixed

Added this functionality.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.