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

git-svn-id: http://svn.automattic.com/wordpress/trunk@10993 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2009-04-17 21:31:57 +00:00
parent 4956e5d453
commit e6cfd0dd6b
1 changed files with 1 additions and 1 deletions

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;