Please add description in order pass W3C validation (on ..admin/users page).
Due to lack of it there is a warning: "trimming empty dd"
The only thing you should change is hook_menu:
$menu['admin/user/force_password_change'] = array
(
'title' => 'Force password change',
'page callback' => 'drupal_get_form',
'page arguments' => array('force_password_change_settings'),
'access arguments' => array('Administer force password change'),
'file' => 'force_password_change_pages.inc',
);
to
$menu['admin/user/force_password_change'] = array
(
'title' => 'Force password change',
'description' => t('Creates the option to force users to create a new password, either by role, or by all users'),
'page callback' => 'drupal_get_form',
'page arguments' => array('force_password_change_settings'),
'access arguments' => array('Administer force password change'),
'file' => 'force_password_change_pages.inc',
);
Thanks for Your module!
Comments
Comment #1
jaypanSure, that's no problem. I've added and commmitted the following text:
It will be part of the next release, which should be in a few weeks or so.
Comment #2
jaypanComment #3
Naiya commentedNice. Thank You!