Opened 10 years ago
Last modified 6 years ago
#29536 new enhancement
Toggle excerpt/list view buttons appear on users list page in network admin
Reported by: | pauldewouters | Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 3.0 |
Component: | Networks and Sites | Keywords: | needs-refresh |
Focuses: | multisite | Cc: |
Description
The buttons to toggle list/excerpt view show up on the Users list page in the Network admin. I suppose they shouldn't. When you click excerpt view, the registered time appears.
I'll submit a patch to remove them from this view.
As an alternative, I wonder if it would be useful to show the user bio in excerpt view?
Attachments (1)
Change History (7)
Note: See
TracTickets for help on using
tickets.
I went digging. :)
The "registered" column on the users list table included the full date with no list/excerpt option when it was MU -
<td><?php echo mysql2date(__('Y-m-d \<\b\r \/\> g:i a'), $user['user_registered']); ?></td>
.A most epic patch in Trac history added the list/excerpt option and output the only the day by default. See [13918].
The switch between list/excerpt is captured in a
$mode
global. Because of this, I don't think we can remove the toggle without the possibility of breaking somebody's custom extension of the users list table.I could see coming up with additional data to display in an excerpt view.