diff options
author | David Colón <david@davidiq.com> | 2016-12-02 14:23:44 +0100 |
---|---|---|
committer | David Colón <david@davidiq.com> | 2016-12-02 14:23:44 +0100 |
commit | a99cb31a5290883bba532e8c340e6ef7bca802fe (patch) | |
tree | 02181b0651caf8760446c92b5629a126bfff1022 /phpBB/phpbb/db/output_handler | |
parent | 3ad13ebd88c66d4ba21bd7740e3fb2cfbc9c2547 (diff) | |
download | forums-a99cb31a5290883bba532e8c340e6ef7bca802fe.tar forums-a99cb31a5290883bba532e8c340e6ef7bca802fe.tar.gz forums-a99cb31a5290883bba532e8c340e6ef7bca802fe.tar.bz2 forums-a99cb31a5290883bba532e8c340e6ef7bca802fe.tar.xz forums-a99cb31a5290883bba532e8c340e6ef7bca802fe.zip |
[ticket/14885] Add a line break when writing to the migrator output file
Diffstat (limited to 'phpBB/phpbb/db/output_handler')
-rw-r--r-- | phpBB/phpbb/db/output_handler/log_wrapper_migrator_output_handler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/output_handler/log_wrapper_migrator_output_handler.php b/phpBB/phpbb/db/output_handler/log_wrapper_migrator_output_handler.php index 20991746ac..d28c195baa 100644 --- a/phpBB/phpbb/db/output_handler/log_wrapper_migrator_output_handler.php +++ b/phpBB/phpbb/db/output_handler/log_wrapper_migrator_output_handler.php @@ -94,7 +94,7 @@ class log_wrapper_migrator_output_handler implements migrator_output_handler_int $translated_message = '[DEBUG] ' . $translated_message; } - fwrite($this->file_handle, $translated_message); + fwrite($this->file_handle, $translated_message . "\r"); fflush($this->file_handle); } } |