From c8db4219ea9e3a7aa37cc2174e1016f29ab856b5 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 4 Jun 2010 12:53:44 +0000 Subject: [PATCH] Fix ms lang file check. Props ocean90. fixes #13706 git-svn-id: https://develop.svn.wordpress.org/trunk@15137 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/l10n.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/l10n.php b/wp-includes/l10n.php index d1e5f710af..1938471568 100644 --- a/wp-includes/l10n.php +++ b/wp-includes/l10n.php @@ -511,7 +511,7 @@ function get_available_languages( $dir = null ) { $languages = array(); foreach( (array)glob( ( is_null( $dir) ? WP_LANG_DIR : $dir ) . '/*.mo' ) as $lang_file ) { - if ( false === strpos( $lang_file, 'continents-cities' ) && 0 !== strpos( $lang_file, 'ms-' ) ) + if ( false === strpos( $lang_file, 'continents-cities' ) && false === strpos( $lang_file, 'ms-' ) ) $languages[] = basename($lang_file, '.mo'); }