Index: plugins.php
===================================================================
--- plugins.php	(revision 3505)
+++ plugins.php	(working copy)
@@ -88,11 +88,12 @@
 <?php
 	$style = '';
 
-	function sort_plugins($plug1, $plug2) {
-		return strnatcasecmp($plug1['Name'], $plug2['Name']);
+	// Sort plugins by plugin name
+	foreach ($plugins as $plugin_file => $plugin_data) {
+		$plugin_names[] = $plugin_data['Name'];
 	}
-	
-	uksort($plugins, 'sort_plugins');
+	$plugin_names = array_map('strtolower', $plugin_names);
+	array_multisort($plugin_names, SORT_ASC, $plugins);
 
 	foreach($plugins as $plugin_file => $plugin_data) {
 		$style = ('class="alternate"' == $style|| 'class="alternate active"' == $style) ? '' : 'alternate';
