Case-insensitive sorting of themes in themes.php. Props demetris. fixes #9570

git-svn-id: https://develop.svn.wordpress.org/trunk@10993 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-04-17 21:31:57 +00:00
parent fcb4384381
commit 540fbabdb0

View File

@ -46,7 +46,7 @@ require_once('admin-header.php');
$themes = get_themes();
$ct = current_theme_info();
ksort( $themes );
uksort( $themes, "strnatcasecmp" );
$theme_total = count( $themes );
$per_page = 15;