Posted by snowmountain on May 6, 2009 at 3:00am
| Project: | Fasttoggle |
| Version: | 6.x-1.3 |
| Component: | Code |
| Category: | bug report |
| Priority: | minor |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
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')),
Comments
#1
ok, if you really need a patch for this, here it is...
#2
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.
#3
Automatically closed -- issue fixed for 2 weeks with no activity.