diff options
author | David Colón <david@davidiq.com> | 2016-12-02 16:50:55 +0100 |
---|---|---|
committer | David Colón <david@davidiq.com> | 2016-12-02 16:50:55 +0100 |
commit | c3caa3d9dc156ed796c96810e88d4e98711d8d89 (patch) | |
tree | e43dede7ed5e109c075211634e79eb4c938931b3 /phpBB/phpbb | |
parent | a99cb31a5290883bba532e8c340e6ef7bca802fe (diff) | |
download | forums-c3caa3d9dc156ed796c96810e88d4e98711d8d89.tar forums-c3caa3d9dc156ed796c96810e88d4e98711d8d89.tar.gz forums-c3caa3d9dc156ed796c96810e88d4e98711d8d89.tar.bz2 forums-c3caa3d9dc156ed796c96810e88d4e98711d8d89.tar.xz forums-c3caa3d9dc156ed796c96810e88d4e98711d8d89.zip |
[ticket/14885] Use \n instead of \r for output_handler messages
Diffstat (limited to 'phpBB/phpbb')
-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 d28c195baa..e4bd3ac8e0 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 . "\r"); + fwrite($this->file_handle, $translated_message . "\n"); fflush($this->file_handle); } } |