From bf68de769e00577513c4ea42107e10c5bee1b24f Mon Sep 17 00:00:00 2001 From: nacin Date: Sat, 4 Feb 2012 00:32:34 +0000 Subject: [PATCH] WP_LANG_DIR is trusted, just need to check $locale. props SergeyBiryukov, fixes #19924. git-svn-id: http://svn.automattic.com/wordpress/trunk@19824 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-settings.php b/wp-settings.php index 304003042..6a273024c 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -262,7 +262,7 @@ load_default_textdomain(); $locale = get_locale(); $locale_file = WP_LANG_DIR . "/$locale.php"; -if ( ( 0 === validate_file( $locale_file ) ) && is_readable( $locale_file ) ) +if ( ( 0 === validate_file( $locale ) ) && is_readable( $locale_file ) ) require( $locale_file ); unset( $locale_file );