diff options
Diffstat (limited to 'App.php')
-rw-r--r-- | App.php | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -138,8 +138,9 @@ class App return false; } + $msg = trim($msg); $fh = fopen($file, "a+"); - fwrite($fh, $msg); + fwrite($fh, "$msg\n"); fclose($fh); } |