Opened 14 years ago
Closed 10 years ago
#18995 closed defect (bug) (wontfix)
Superfluous check in WP_Users_List_Table::display_rows()
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 3.2.1 |
| Component: | Users | Keywords: | has-patch needs-refresh |
| Focuses: | Cc: |
Description
Specifically, this one:
if ( is_multisite() && empty( $role ) )
continue;
It seems to have been a misguided attempt to fix something that should have been (and currently is) handled at the SQL level: #12711
Attachments (2)
Change History (7)
Note: See
TracTickets for help on using
tickets.
Also note that single_row() is perfectly capable of handling a user without a role on the current blog (it just shows 'None' in the Role column).