diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2017-01-01 15:25:21 +0100 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2017-01-01 15:25:21 +0100 |
commit | f894ca5fa4646683efd3b9e0c540e820e1d24e77 (patch) | |
tree | be1b8eedcb6d2240138487318d4032fd825c3306 /includes/helper/internationalization_helper.php | |
parent | 00d8709ae8edcac15ca7cfb01ffb60e8165f9132 (diff) |
Fix relative paths
Diffstat (limited to 'includes/helper/internationalization_helper.php')
-rw-r--r-- | includes/helper/internationalization_helper.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/helper/internationalization_helper.php b/includes/helper/internationalization_helper.php index 60451197..7127bdee 100644 --- a/includes/helper/internationalization_helper.php +++ b/includes/helper/internationalization_helper.php @@ -33,7 +33,7 @@ function gettext_init() { } gettext_locale(); - bindtextdomain('default', '../locale'); + bindtextdomain('default', __DIR__ . '../../locale'); bind_textdomain_codeset('default', 'UTF-8'); textdomain('default'); } |