Use WP_LANG_DIR. fixes #7378 for trunk

git-svn-id: https://develop.svn.wordpress.org/trunk@8404 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-07-22 21:09:30 +00:00
parent 797a3c335d
commit eb99bdcadf
1 changed files with 2 additions and 2 deletions

View File

@ -256,7 +256,7 @@ function load_textdomain($domain, $mofile) {
/**
* load_default_textdomain() - Loads default translated strings based on locale
*
* Loads the .mo file in LANGDIR constant path from WordPress root.
* Loads the .mo file in WP_LANG_DIR constant path from WordPress root.
* The translated (.mo) file is named based off of the locale.
*
* @since 1.5.0
@ -264,7 +264,7 @@ function load_textdomain($domain, $mofile) {
function load_default_textdomain() {
$locale = get_locale();
$mofile = ABSPATH . LANGDIR . "/$locale.mo";
$mofile = WP_LANG_DIR . "/$locale.mo";
load_textdomain('default', $mofile);
}