IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 1273 | 1273 | */ |
| 1274 | 1274 | public static function sort_by_name( &$themes ) { |
| 1275 | 1275 | if ( 0 === strpos( get_locale(), 'en_' ) ) { |
| 1276 | | uasort( $themes, array( 'WP_Theme', '_name_sort' ) ); |
| | 1276 | @uasort( $themes, array( 'WP_Theme', '_name_sort' ) ); |
| 1277 | 1277 | } else { |
| 1278 | | uasort( $themes, array( 'WP_Theme', '_name_sort_i18n' ) ); |
| | 1278 | @uasort( $themes, array( 'WP_Theme', '_name_sort_i18n' ) ); |
| 1279 | 1279 | } |
| 1280 | 1280 | } |
| 1281 | 1281 | |