On page users/username the fasttoggle for Status: has 2 values: activate and unblock. These should be activate and BLOCK, not UN-block.

Clicking active changes status from blocked to active, while
clicking unblock changes state from active to blocked.

The problem is on line 342 of fasttoggle.module, below, and the fix for this line is below that:

'user_status' => array(0 => t('activate'), 1 => t('unblock')),

should be

'user_status' => array(0 => t('activate'), 1 => t('block')),

CommentFileSizeAuthor
#1 fasttoggle.module.patch687 bytesAnonymous (not verified)

Comments

Anonymous’s picture

Status: Active » Reviewed & tested by the community
StatusFileSize
new687 bytes

ok, if you really need a patch for this, here it is...

nigelcunningham’s picture

Status: Reviewed & tested by the community » Fixed

Looking at current git, this patch doesn't seem to have been applied, but the code is changed. Marking as fixed. Please reopen if this is still an issue.

Status: Fixed » Closed (fixed)

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