aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/app.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/app.php')
-rw-r--r--phpBB/app.php7
1 files changed, 1 insertions, 6 deletions
diff --git a/phpBB/app.php b/phpBB/app.php
index c085f966c8..d93208d585 100644
--- a/phpBB/app.php
+++ b/phpBB/app.php
@@ -24,12 +24,7 @@ $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', '');
-$uri = '/' . $controller;
-$symfony_request = phpbb_create_symfony_request($uri, $request);
-
+$symfony_request = phpbb_create_symfony_request($request);
$http_kernel = $phpbb_container->get('http_kernel');
$response = $http_kernel->handle($symfony_request);
$response->send();