diff --git wp-includes/class-wp-theme.php wp-includes/class-wp-theme.php
index ba07555..068fff8 100644
|
|
|
final class WP_Theme implements ArrayAccess {
|
| 1183 | 1183 | * |
| 1184 | 1184 | * @since 3.4.0 |
| 1185 | 1185 | * @access private |
| | 1186 | * |
| | 1187 | * @param WP_Theme $a |
| | 1188 | * @param WP_Theme $b |
| | 1189 | * @return int |
| 1186 | 1190 | */ |
| 1187 | 1191 | private static function _name_sort( $a, $b ) { |
| 1188 | 1192 | return strnatcasecmp( $a->headers['Name'], $b->headers['Name'] ); |
| … |
… |
final class WP_Theme implements ArrayAccess {
|
| 1193 | 1197 | * |
| 1194 | 1198 | * @since 3.4.0 |
| 1195 | 1199 | * @access private |
| | 1200 | * |
| | 1201 | * @param WP_Theme $a |
| | 1202 | * @param WP_Theme $b |
| | 1203 | * @see _name_sort |
| | 1204 | * @return int |
| 1196 | 1205 | */ |
| 1197 | 1206 | private static function _name_sort_i18n( $a, $b ) { |
| 1198 | 1207 | // Don't mark up; Do translate. |