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:
parent
797a3c335d
commit
eb99bdcadf
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user