From c3caa3d9dc156ed796c96810e88d4e98711d8d89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Col=C3=B3n?= Date: Fri, 2 Dec 2016 16:50:55 +0100 Subject: [PATCH] [ticket/14885] Use \n instead of \r for output_handler messages --- .../db/output_handler/log_wrapper_migrator_output_handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }