diff options
author | David King <imkingdavid@gmail.com> | 2012-05-22 10:52:49 -0400 |
---|---|---|
committer | David King <imkingdavid@gmail.com> | 2012-05-22 10:52:49 -0400 |
commit | 819accedc87921a6fd1788fa2164d023f6d97f98 (patch) | |
tree | 4e602f66af84b9f10da399ab3494b9813b81843b /tests/test_framework | |
parent | b96c05069569dd1db48a5bffa15c2fcd69369e6b (diff) | |
download | forums-819accedc87921a6fd1788fa2164d023f6d97f98.tar forums-819accedc87921a6fd1788fa2164d023f6d97f98.tar.gz forums-819accedc87921a6fd1788fa2164d023f6d97f98.tar.bz2 forums-819accedc87921a6fd1788fa2164d023f6d97f98.tar.xz forums-819accedc87921a6fd1788fa2164d023f6d97f98.zip |
[task/functional] Fix $lang_path variable
PHPBB3-10758
Diffstat (limited to 'tests/test_framework')
-rw-r--r-- | tests/test_framework/phpbb_functional_test_case.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_framework/phpbb_functional_test_case.php b/tests/test_framework/phpbb_functional_test_case.php index 59579c1c33..1bcc3928df 100644 --- a/tests/test_framework/phpbb_functional_test_case.php +++ b/tests/test_framework/phpbb_functional_test_case.php @@ -210,7 +210,7 @@ class phpbb_functional_test_case extends phpbb_test_case } } - $lang_path = "./phpBB/language/en/$lang_file.php"; + $lang_path = __DIR__ . "/../../phpBB/language/en/$lang_file.php"; $lang = array(); |