aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/controller/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/controller/install.php')
-rw-r--r--phpBB/install/controller/install.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/install/controller/install.php b/phpBB/install/controller/install.php
index 12bc575b83..4021c5625b 100644
--- a/phpBB/install/controller/install.php
+++ b/phpBB/install/controller/install.php
@@ -85,8 +85,14 @@ class install
$this->iohandler_factory->set_environment('nojs');
}
+ // Set the appropriate input-output handler
+ //$this->installer->set_iohandler($this->iohandler_factory->get());
+
if ($this->request->is_ajax())
{
+ // @todo: remove this line, and use the above
+ $this->installer->set_iohandler($this->iohandler_factory->get());
+
$installer = $this->installer;
$response = new StreamedResponse();
$response->setCallback(function() use ($installer) {