Index: imce_extras.js =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/imce/js/imce_extras.js,v retrieving revision 1.2.2.3 diff -u -r1.2.2.3 imce_extras.js --- imce_extras.js 29 Jan 2009 20:02:57 -0000 1.2.2.3 +++ imce_extras.js 30 Apr 2009 01:10:19 -0000 @@ -148,7 +148,7 @@ }; //sorters -imce.sortStrAsc = function(a, b) {return a.charAt(0).toLowerCase() < b.charAt(0).toLowerCase() ? -1 : b < a;}; +imce.sortStrAsc = function(a, b) {return a.toLowerCase() < b.toLowerCase() ? -1 : 1;}; imce.sortStrDsc = function(a, b) {return imce.sortStrAsc(b, a);}; imce.sortNumAsc = function(a, b) {return a-b;}; imce.sortNumDsc = function(a, b) {return b-a};