aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/app.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/app.php')
-rw-r--r--phpBB/app.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/app.php b/phpBB/app.php
index d93208d585..7dc778e3a8 100644
--- a/phpBB/app.php
+++ b/phpBB/app.php
@@ -24,8 +24,8 @@ $user->session_begin();
$auth->acl($user->data);
$user->setup('app');
-$symfony_request = phpbb_create_symfony_request($request);
$http_kernel = $phpbb_container->get('http_kernel');
+$symfony_request = $phpbb_container->get('symfony_request');
$response = $http_kernel->handle($symfony_request);
$response->send();
$http_kernel->terminate($symfony_request, $response);