Skip to content
Snippets Groups Projects
Commit b300e590 authored by Thom's avatar Thom :tools:
Browse files

Fix line break issue (#6309)

parent c65925bd
No related branches found
No related tags found
No related merge requests found
......@@ -278,7 +278,7 @@ class app {
die('Unable to open logfile.');
}
if(!fwrite($fp, $log_msg . '\r\n')) {
if(!fwrite($fp, $log_msg . "\r\n")) {
die('Unable to write to logfile.');
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment