1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-21 00:02:18 +02:00

[ticket/14885] Add a line break when writing to the migrator output file

This commit is contained in:
David Colón 2016-12-02 14:23:44 +01:00
parent 3ad13ebd88
commit a99cb31a52

View File

@ -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);
}
}