mirror of
https://github.com/inretio/WordPress-Plugin-Boilerplate
synced 2024-12-22 20:03:53 +02:00
Merge pull request #72 from GaryJones/feature/trailingslashit
Make WP_LANG_DIR constant safer
This commit is contained in:
commit
1534c48568
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ class Plugin_Name {
|
|||
$domain = $this->plugin_slug;
|
||||
$locale = apply_filters( 'plugin_locale', get_locale(), $domain );
|
||||
|
||||
load_textdomain( $domain, WP_LANG_DIR . '/' . $domain . '/' . $domain . '-' . $locale . '.mo' );
|
||||
load_textdomain( $domain, trailingslashit( WP_LANG_DIR ) . $domain . '/' . $domain . '-' . $locale . '.mo' );
|
||||
load_plugin_textdomain( $domain, FALSE, basename( dirname( __FILE__ ) ) . '/lang/' );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue