Opened 5 months ago
Closed 5 months ago
#2105 closed defect (fixed)
WP_Role contains role name, instead of role slug
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 2.3 |
| Component: | Roles/Capabilities | Version: | trunk |
| Severity: | normal | Keywords: | |
| Cc: |
Description
I recently ran into some capability issues after updating bbPress to 2.2.3 (and WordPress to 3.5).
Compared with native WP roles, the bbPress role objects don't seem to have the correct value for the 'name' property.
Steps to reproduce:
var_dump( $GLOBALS['wp_roles']->get_role( 'bbp_moderator' )->name );
Expected result:
'bbp_moderator'
Actual result:
'Moderator'
Not sure if this is a bug in WP's tangled role API or if bbPress is _doing_it_wrong().
Change History (2)
comment:1
johnjamesjacoby — 5 months ago
- Milestone changed from Awaiting Review to 2.3
comment:2
johnjamesjacoby — 5 months ago
- Resolution set to fixed
- Status changed from new to closed
Note: See
TracTickets for help on using
tickets.
Likely bbPress is doing it wrong, and I'm translating the role somewhere.