aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2016-12-03 12:36:20 +0100
committerTristan Darricau <github@nicofuma.fr>2016-12-03 12:36:20 +0100
commit9d4c51f8ba2685cff9b8a5b70cad4c356a9d11ff (patch)
treec865e2a294effe5033f5e4a804445d0af81de12b /phpBB/phpbb
parent74f49387e17d53903c65c1a82ef75bd871a62af4 (diff)
parentc3caa3d9dc156ed796c96810e88d4e98711d8d89 (diff)
downloadforums-9d4c51f8ba2685cff9b8a5b70cad4c356a9d11ff.tar
forums-9d4c51f8ba2685cff9b8a5b70cad4c356a9d11ff.tar.gz
forums-9d4c51f8ba2685cff9b8a5b70cad4c356a9d11ff.tar.bz2
forums-9d4c51f8ba2685cff9b8a5b70cad4c356a9d11ff.tar.xz
forums-9d4c51f8ba2685cff9b8a5b70cad4c356a9d11ff.zip
Merge pull request #4553 from DavidIQ/ticket/14885
[ticket/14885] Add a line break when writing to the migrator output file * DavidIQ/ticket/14885: [ticket/14885] Use \n instead of \r for output_handler messages [ticket/14885] Add a line break when writing to the migrator output file
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/output_handler/log_wrapper_migrator_output_handler.php2
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..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);
+ fwrite($this->file_handle, $translated_message . "\n");
fflush($this->file_handle);
}
}