diff --git a/includes/functions.php b/includes/functions.php index 6d7c90920..1f470fbdc 100755 --- a/includes/functions.php +++ b/includes/functions.php @@ -55,7 +55,7 @@ function logfile($string) global $config; $fd = fopen($config['log_file'],'a'); - fputs($fd,$string); + fputs($fd,$string . "\n"); fclose($fd); }