mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
Merge branch '3.2.x'
* 3.2.x: [ticket/14885] Use \n instead of \r for output_handler messages [ticket/14885] Add a line break when writing to the migrator output file
This commit is contained in:
commit
51ec271748
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue