added spacing in generated logs

This commit is contained in:
alopexc0de 2012-10-09 22:32:17 -04:00
parent c056cd8b59
commit 9cee531941

View File

@ -67,7 +67,7 @@ $parts = Explode(\'/\', $currentFile);
$myFile = "log/".$parts[count($parts) - 1].".log";
$fh = fopen($myFile, \'a\') or die("can\'t open file");
$string = $_SERVER[\'REMOTE_ADDR\'];
$string = $_SERVER[\'REMOTE_ADDR\']."\n";
fwrite($fh, $string);
fclose($fh);
?>