mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/14462] Not show timeout messages in convertors
PHPBB3-14462
This commit is contained in:
parent
2084404d2a
commit
6debd9a1be
1 changed files with 4 additions and 4 deletions
|
@ -592,7 +592,7 @@ class convertor
|
||||||
|
|
||||||
$url = $this->controller_helper->route('phpbb_convert_convert', array('converter' => $convertor));
|
$url = $this->controller_helper->route('phpbb_convert_convert', array('converter' => $convertor));
|
||||||
$this->iohandler->redirect($url);
|
$this->iohandler->redirect($url);
|
||||||
$this->iohandler->send_response();
|
$this->iohandler->send_response(true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -686,7 +686,7 @@ class convertor
|
||||||
if ($this->request->is_ajax())
|
if ($this->request->is_ajax())
|
||||||
{
|
{
|
||||||
$this->iohandler->add_user_form_group($form_title, $form_data);
|
$this->iohandler->add_user_form_group($form_title, $form_data);
|
||||||
$this->iohandler->send_response();
|
$this->iohandler->send_response(true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -779,7 +779,7 @@ class convertor
|
||||||
if ($this->request->is_ajax())
|
if ($this->request->is_ajax())
|
||||||
{
|
{
|
||||||
$this->iohandler->add_error_message($msg, $desc);
|
$this->iohandler->add_error_message($msg, $desc);
|
||||||
$this->iohandler->send_response();
|
$this->iohandler->send_response(true);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -803,7 +803,7 @@ class convertor
|
||||||
public function redirect_to_html($url)
|
public function redirect_to_html($url)
|
||||||
{
|
{
|
||||||
$this->iohandler->redirect($url);
|
$this->iohandler->redirect($url);
|
||||||
$this->iohandler->send_response();
|
$this->iohandler->send_response(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
private function setup_navigation($stage)
|
private function setup_navigation($stage)
|
||||||
|
|
Loading…
Add table
Reference in a new issue