First off, my apologies if I'm doing any of this wrong. This is my first ticket. ;)
Basically, I got tired of the "Manage Plugins" page being sorted by the plugin's filename instead of the plugin's name, so here's some code that sorts it by name.
Starting on line 1038 of "/wp-admin/admin-functions.php" is this:
$wp_plugins[plugin_basename($plugin_file)] = $plugin_data;
}
return $wp_plugins;
It gets replaced with this:
$plugin_data['Filename'] = plugin_basename($plugin_file);
$wp_plugins[$plugin_data['Name']] = $plugin_data;
}
ksort($wp_plugins);
return $wp_plugins;
Since we've now changed the key of the array from the filename to the plugin's name, we gotta change "/wp-admin/plugins.php" a bit.
On line 84 is this:
foreach($plugins as $plugin_file => $plugin_data) {
It gets replaced by this:
foreach($plugins as $plugin_name => $plugin_data) {
$plugin_file = $plugin_data['Filename'];
And that should do it! :)