WP_LANG_DIR is trusted, just need to check $locale. props SergeyBiryukov, fixes #19924.

git-svn-id: https://develop.svn.wordpress.org/trunk@19824 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-02-04 00:32:34 +00:00
parent ca343daf1c
commit 929486fd19

View File

@ -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 );