summaryrefslogtreecommitdiff
path: root/includes/helper
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2017-01-01 15:25:21 +0100
committerIgor Scheller <igor.scheller@igorshp.de>2017-01-01 15:25:21 +0100
commitf894ca5fa4646683efd3b9e0c540e820e1d24e77 (patch)
treebe1b8eedcb6d2240138487318d4032fd825c3306 /includes/helper
parent00d8709ae8edcac15ca7cfb01ffb60e8165f9132 (diff)
Fix relative paths
Diffstat (limited to 'includes/helper')
-rw-r--r--includes/helper/internationalization_helper.php2
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');
}