aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/app.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/app.php')
-rw-r--r--phpBB/app.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/app.php b/phpBB/app.php
index f1023ff1b5..13bf3f0be1 100644
--- a/phpBB/app.php
+++ b/phpBB/app.php
@@ -7,6 +7,8 @@
*
*/
+use Symfony\Component\HttpFoundation\Request;
+
/**
*/
@@ -24,6 +26,12 @@ $user->session_begin();
$auth->acl($user->data);
$user->setup('app');
+// Until we fix the issue with relative paths, we have to fake path info to
+// allow urls like app.php?controller=foo/bar
+$controller = $request->variable('controller', '', false, phpbb_request_interface::GET);
+$uri = '/' . $controller;
+$symfony_request = Request::create($uri);
+
$http_kernel = $phpbb_container->get('http_kernel');
$response = $http_kernel->handle($symfony_request);
$response->send();