blob: 24dbfaef36d2c705dcb9122fec404ac53b927f65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
From e8e951098db781422f7ed557d97b1b218d7529de Mon Sep 17 00:00:00 2001
From: Remi Collet <fedora@famillecollet.com>
Date: Mon, 28 Dec 2015 08:47:37 +0100
Subject: [PATCH] add .log suffix to all log file names
---
program/lib/Roundcube/rcube.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/program/lib/Roundcube/rcube.php b/program/lib/Roundcube/rcube.php
index 7388472..c2fc70f 100644
--- a/program/lib/Roundcube/rcube.php
+++ b/program/lib/Roundcube/rcube.php
@@ -1195,7 +1195,7 @@ class rcube
$log_dir = RCUBE_INSTALL_PATH . 'logs';
}
- return file_put_contents("$log_dir/$name", $line, FILE_APPEND) !== false;
+ return file_put_contents("$log_dir/$name.log", $line, FILE_APPEND) !== false;
}
/**
|