From cf7da6eab8ca9b5b95fd21d39a9ce7a78f2f251d Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 4 Feb 2010 18:46:25 +0000 Subject: [PATCH] Introduce get_available_languages(). Validate WPLANG. fixes #11774 git-svn-id: http://svn.automattic.com/wordpress/trunk@12946 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/ms-edit.php | 2 +- wp-admin/ms-options.php | 10 +++------- wp-includes/l10n.php | 26 ++++++++++++++++++++++++++ 3 files changed, 30 insertions(+), 8 deletions(-) diff --git a/wp-admin/ms-edit.php b/wp-admin/ms-edit.php index 8cab8aaa7..395bf71a3 100644 --- a/wp-admin/ms-edit.php +++ b/wp-admin/ms-edit.php @@ -23,7 +23,7 @@ switch ( $_GET['action'] ) { if ( empty( $_POST ) ) wp_die( __("You probably need to go back to the options page") ); - if ( isset($_POST['WPLANG']) ) + if ( isset($_POST['WPLANG']) && ( '' === $_POST['WPLANG'] || in_array($_POST['WPLANG'], get_available_languages()) ) ) update_site_option( "WPLANG", $_POST['WPLANG'] ); if ( is_email( $_POST['admin_email'] ) ) diff --git a/wp-admin/ms-options.php b/wp-admin/ms-options.php index 2bc3efc35..df4c17605 100644 --- a/wp-admin/ms-options.php +++ b/wp-admin/ms-options.php @@ -252,19 +252,15 @@ if (isset($_GET['updated'])) {

(These settings may be overridden by blog owners)') ?>

diff --git a/wp-includes/l10n.php b/wp-includes/l10n.php index efb9ad5ac..a7c0a755a 100644 --- a/wp-includes/l10n.php +++ b/wp-includes/l10n.php @@ -484,4 +484,30 @@ function &get_translations_for_domain( $domain ) { function translate_user_role( $name ) { return translate_with_gettext_context( before_last_bar($name), 'User role' ); } + +/** + * Get all available languages based on the presence of *.mo files in a given directory. The default directory is WP_LANG_DIR. + * + * @since 3.0.0 + * + * @param string $dir A directory in which to search for language files. The default directory is WP_LANG_DIR. + * @return array Array of language codes or an empty array if no languages are present. Language codes are formed by stripping the .mo extension from the language file names. + */ +function get_available_languages( $dir = null ) { + $languages = array(); + + if ( empty($dir) ) + $dir = WP_LANG_DIR; + + if ( is_dir( $dir ) && $dh = opendir( $dir ) ) { + while ( ( $lang_file = readdir( $dh ) ) !== false ) { + if ( substr( $lang_file, -3 ) == '.mo' ) + $languages[] = basename($lang_file, '.mo'); + } + closedir($dh); + } + + return $languages; +} + ?>