From 5dc3651290b0d6cad28534e6f88cc166f2e0a5b8 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Wed, 6 Nov 2013 13:35:20 +0100 Subject: [ticket/12004] Support empty routes to app.php/ in path_helper The symfony routing component allows us to use the path "/" for routes. Therefore, we should be able to use example.com/app.php/ for controllers. However, this currently does not properly work. The method get_web_root_path incorrectly returns phpbb_root_path. Therefore, paths to images or files are broken. PHPBB3-12004 --- tests/path_helper/web_root_path_test.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tests/path_helper') diff --git a/tests/path_helper/web_root_path_test.php b/tests/path_helper/web_root_path_test.php index 2c22511402..ec04135997 100644 --- a/tests/path_helper/web_root_path_test.php +++ b/tests/path_helper/web_root_path_test.php @@ -116,6 +116,13 @@ class phpbb_path_helper_web_root_path_test extends phpbb_test_case '/phpbb3-fork/phpBB/foo/template', '/phpbb3-fork/phpBB/app.php', ), + array( + $this->phpbb_root_path . 'test.php', + $this->phpbb_root_path . '../test.php', + '/', + '/phpbb3-fork/phpBB/app.php/', + '/phpbb3-fork/phpBB/app.php', + ), ); } -- cgit v1.2.1