#2412 closed defect (bug) (fixed)
Sort by plugin name for real
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 2.0.1 |
| Component: | Administration | Keywords: | bg|has-patch bg|needs-testing |
| Focuses: | Cc: |
Description
Since sorting by plugin name has been reconsidered (I was shot down last time :/), we might as well do it right then. In WordPress v2.0.1 / current SVN, the plugins are only sorted by filename (rather than directory -> filename as in pre-2.0.1).
Attached is a patch that actually results in plugins being sorted by plugin name, case insensitive. :)
Attachments (1)
Change History (10)
#4
@
19 years ago
- Resolution set to fixed
- Status changed from assigned to closed
Woot! Fixed: [4289]
#5
@
19 years ago
- Milestone changed from 2.1 to 2.0.5
- Resolution fixed deleted
- Status changed from closed to reopened
Note: See
TracTickets for help on using
tickets.
Since the .diff looks a bit goofy due to the code being removed also being included, here's the code I added, just by itself:
// Sort plugins by plugin name foreach ($plugins as $plugin_file => $plugin_data) { $plugin_names[] = $plugin_data['Name']; } $plugin_names = array_map('strtolower', $plugin_names); array_multisort($plugin_names, SORT_ASC, $plugins);