aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-11-02 12:01:42 +0100
committerMarc Alexander <admin@m-a-styles.de>2015-01-04 17:41:02 +0100
commit281cc5353208258e7f4a9032f720c5f1ae0fb8dc (patch)
tree96710285efbac1d26ae606437674cf26429ddaae /tests
parenta623868f20574e19d6840af11bce8836ad436e95 (diff)
downloadforums-281cc5353208258e7f4a9032f720c5f1ae0fb8dc.tar
forums-281cc5353208258e7f4a9032f720c5f1ae0fb8dc.tar.gz
forums-281cc5353208258e7f4a9032f720c5f1ae0fb8dc.tar.bz2
forums-281cc5353208258e7f4a9032f720c5f1ae0fb8dc.tar.xz
forums-281cc5353208258e7f4a9032f720c5f1ae0fb8dc.zip
[ticket/13192] Remove app.php on mod rewrite even if app.php is outside root
PHPBB3-13192
Diffstat (limited to 'tests')
-rw-r--r--tests/path_helper/path_helper_test.php2
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 26cb940b54..62c2a24b22 100644
--- a/tests/path_helper/path_helper_test.php
+++ b/tests/path_helper/path_helper_test.php
@@ -432,6 +432,8 @@ class phpbb_path_helper_test extends phpbb_test_case
array('foo/index', false, 'foo/index'),
array('app.php/foo', false, 'app.php/foo'),
array('app.php/foo', true, 'foo'),
+ array('/../app.php/foo', false, '../app.php/foo'),
+ array('/../app.php/foo', true, '../foo'),
);
}