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')),
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | fasttoggle.module.patch | 687 bytes | Anonymous (not verified) |
Comments
Comment #1
Anonymous (not verified) commentedok, if you really need a patch for this, here it is...
Comment #2
nigelcunningham commentedLooking 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.