diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2016-02-14 19:27:24 +0100 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2016-02-14 19:27:24 +0100 |
commit | 6debd9a1bea4ee69a06eac43cc6b2f856f601604 (patch) | |
tree | 68d2ecbda0a2758f01e6f4cc4acecb892ddd3c57 /phpBB/install/convert/controller | |
parent | 2084404d2a0648d406749d67e44f1ba3ba44d7df (diff) | |
download | forums-6debd9a1bea4ee69a06eac43cc6b2f856f601604.tar forums-6debd9a1bea4ee69a06eac43cc6b2f856f601604.tar.gz forums-6debd9a1bea4ee69a06eac43cc6b2f856f601604.tar.bz2 forums-6debd9a1bea4ee69a06eac43cc6b2f856f601604.tar.xz forums-6debd9a1bea4ee69a06eac43cc6b2f856f601604.zip |
[ticket/14462] Not show timeout messages in convertors
PHPBB3-14462
Diffstat (limited to 'phpBB/install/convert/controller')
-rw-r--r-- | phpBB/install/convert/controller/convertor.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/install/convert/controller/convertor.php b/phpBB/install/convert/controller/convertor.php index 9b52fdda32..a40f1d0b52 100644 --- a/phpBB/install/convert/controller/convertor.php +++ b/phpBB/install/convert/controller/convertor.php @@ -592,7 +592,7 @@ class convertor $url = $this->controller_helper->route('phpbb_convert_convert', array('converter' => $convertor)); $this->iohandler->redirect($url); - $this->iohandler->send_response(); + $this->iohandler->send_response(true); } else { @@ -686,7 +686,7 @@ class convertor if ($this->request->is_ajax()) { $this->iohandler->add_user_form_group($form_title, $form_data); - $this->iohandler->send_response(); + $this->iohandler->send_response(true); } else { @@ -779,7 +779,7 @@ class convertor if ($this->request->is_ajax()) { $this->iohandler->add_error_message($msg, $desc); - $this->iohandler->send_response(); + $this->iohandler->send_response(true); } else { @@ -803,7 +803,7 @@ class convertor public function redirect_to_html($url) { $this->iohandler->redirect($url); - $this->iohandler->send_response(); + $this->iohandler->send_response(true); } private function setup_navigation($stage) |