sort plugins by plugin name, for real. fixes #2412

git-svn-id: http://svn.automattic.com/wordpress/trunk@4322 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2006-10-04 08:56:44 +00:00
parent 9a114c40e2
commit 3316a65f8e
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ if (empty($plugins)) {
return strnatcasecmp($plug1['Name'], $plug2['Name']);
}
uksort($plugins, 'sort_plugins');
uasort($plugins, 'sort_plugins');
foreach($plugins as $plugin_file => $plugin_data) {
$style = ('class="alternate"' == $style|| 'class="alternate active"' == $style) ? '' : 'alternate';