diff options
author | Mate Bartus <mate.bartus@gmail.com> | 2016-02-04 21:20:02 +0100 |
---|---|---|
committer | Mate Bartus <mate.bartus@gmail.com> | 2016-02-04 21:20:02 +0100 |
commit | 2f6f9a05eb1ae25a29fcb90bb301ce507298a474 (patch) | |
tree | fb209c1630fba34ea2f5495b0df26db49e568c89 /phpBB | |
parent | 013d4d463392ca70106d9a3e8597e05f8e9a09ff (diff) | |
download | forums-2f6f9a05eb1ae25a29fcb90bb301ce507298a474.tar forums-2f6f9a05eb1ae25a29fcb90bb301ce507298a474.tar.gz forums-2f6f9a05eb1ae25a29fcb90bb301ce507298a474.tar.bz2 forums-2f6f9a05eb1ae25a29fcb90bb301ce507298a474.tar.xz forums-2f6f9a05eb1ae25a29fcb90bb301ce507298a474.zip |
[ticket/14312] Push migration error messages to the user
PHPBB3-14312
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/install/module/update_database/task/update.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/phpbb/install/module/update_database/task/update.php b/phpBB/phpbb/install/module/update_database/task/update.php index 4b2baf2c23..aa44d403dd 100644 --- a/phpBB/phpbb/install/module/update_database/task/update.php +++ b/phpBB/phpbb/install/module/update_database/task/update.php @@ -158,6 +158,7 @@ class update extends task_base array_unshift($msg, $e->getMessage()); $this->iohandler->add_error_message($msg); + $this->iohandler->send_response(); throw new user_interaction_required_exception(); } |