From 6f69803a5366bbb1f19d5eddce2700abc5789148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20Calvo?= Date: Tue, 17 Jul 2018 12:18:14 +0200 Subject: [PATCH] [ticket/14285] Fix return PHPBB3-14285 --- phpBB/phpbb/storage/controller/controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/phpbb/storage/controller/controller.php b/phpBB/phpbb/storage/controller/controller.php index d36cd6e207..97ecd92730 100644 --- a/phpBB/phpbb/storage/controller/controller.php +++ b/phpBB/phpbb/storage/controller/controller.php @@ -65,7 +65,7 @@ class controller throw new http_exception(500, 'Headers already sent'); } - return $this->response->send(); + return $this->response; } protected function is_allowed($file)