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

jaypan’s picture

Sure, that's no problem. I've added and commmitted the following text:

'Allows users to change various password settings and/or force users in specified roles to change their password'

It will be part of the next release, which should be in a few weeks or so.

jaypan’s picture

Status: Active » Fixed
Naiya’s picture

Nice. Thank You!

Status: Fixed » Closed (fixed)

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