undo falsely changed log file

This commit is contained in:
Arthur Schiwon 2014-06-25 18:12:35 +02:00
parent 34761dabb1
commit 6958033db9

View file

@ -85,7 +85,7 @@ class OC_Log_Owncloud {
}
$entry = json_encode($entry);
$handle = @fopen(self::$logFile, 'a');
// @chmod(self::$logFile, 0640);
@chmod(self::$logFile, 0640);
if ($handle) {
fwrite($handle, $entry."\n");
fclose($handle);