Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mattia Rizzolo
ISPConfig 3
Commits
b300e590
Commit
b300e590
authored
Mar 24, 2022
by
Thom
🛠
Browse files
Fix line break issue (#6309)
parent
c65925bd
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/lib/app.inc.php
View file @
b300e590
...
...
@@ -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.'
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment