Merge pull request #78 from rvola/master

Fix localization loading by removing extraneous space character
This commit is contained in:
Yahnis Elsts 2017-01-12 11:37:29 +02:00 committed by GitHub
commit 0ed1785fb1
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ if ( !class_exists('Puc_v4_UpdateChecker', false) ):
$path = realpath(dirname(__FILE__) . '/../../languages');
if ($path && file_exists($path)) {
load_textdomain($domain, $path . '/ ' . $moFile);
load_textdomain($domain, $path . '/' . $moFile);
}
}