diff options
-rw-r--r-- | tests/path_helper/path_helper_test.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/path_helper/path_helper_test.php b/tests/path_helper/path_helper_test.php index 3b25eba716..f33509c975 100644 --- a/tests/path_helper/path_helper_test.php +++ b/tests/path_helper/path_helper_test.php @@ -434,6 +434,8 @@ class phpbb_path_helper_test extends phpbb_test_case array('app.php/foo', false, 'app.php/foo'), array('/../app.php/foo', true, '../foo'), array('/../app.php/foo', false, '../app.php/foo'), + array('/../example/app.php/foo/bar', true, '../example/foo/bar'), + array('/../example/app.php/foo/bar', false, '../example/app.php/foo/bar'), ); } |