Anpassung an LOG_PATH

This commit is contained in:
Andreas Österreicher
2007-01-08 16:32:10 +00:00
parent 76f1892f01
commit 87fe8cb18b
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ if(!check_lektor($_SERVER["REMOTE_USER"],$conn))
/* ffe, 20051020 - do a little logging */
$message= date("F j G:i:s") . " mailgroup: [" . $_REQUEST['grp'] . "] (using " . $mail_id . ") requested by [" . $_SERVER['PHP_AUTH_USER'] . "]\n";
$filet = fopen("../../../system/.htmlistopen.log", "a");
$filet = fopen(LOG_PATH.'.htmlistopen.log', "a");
fwrite($filet, $message, strlen($message));
fclose($filet);