Ticket #2412 (closed defect (bug): fixed)

Opened 6 years ago

Last modified 5 years ago

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:

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

alphabetical_plugins.diff Download (743 bytes) - added by Viper007Bond 6 years ago.

Change History

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);
  • Owner changed from anonymous to markjaquith
  • Status changed from new to assigned
  • Keywords bg|needs-testing added
  • Status changed from assigned to closed
  • Resolution set to fixed

Woot! Fixed: [4289]

  • Status changed from closed to reopened
  • Resolution fixed deleted
  • Milestone changed from 2.1 to 2.0.5
  • Status changed from reopened to closed
  • Resolution set to fixed

(In [4322]) sort plugins by plugin name, for real. fixes #2412

(In [4323]) sort plugins by plugin name, for real. fixes #2412

Further changes: [4324] and [4325] move plugin sorting (by Name) to get_plugins() so that it works for the Edit Plugins page too.

Did the stupid colon again.

  • Milestone 2.0.5 deleted

Milestone 2.0.5 deleted

Note: See TracTickets for help on using tickets.