#2412 closed defect (bug) (fixed)
Sort by plugin name for real
| Reported by: | Viper007Bond | Owned by: | markjaquith |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Administration | Version: | 2.0.1 |
| Severity: | normal | Keywords: | bg|has-patch bg|needs-testing |
| Cc: | Focuses: |
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)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
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);