summaryrefslogtreecommitdiff
path: root/roundcubemail/program
diff options
context:
space:
mode:
authorthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-08-17 09:54:53 +0000
committerthomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-08-17 09:54:53 +0000
commit87b8fcd84a134d11fa61af3035ba7b6bd7155924 (patch)
treeba8ecb90570593bb6684d3f5fb31147921ba1112 /roundcubemail/program
parent51040aee932bb2d795330a572d89a7da415e02b5 (diff)
Remove newline in log_bug function (#1486047)
git-svn-id: https://svn.roundcube.net/trunk@2862 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program')
-rw-r--r--roundcubemail/program/include/bugs.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/bugs.inc b/roundcubemail/program/include/bugs.inc
index 1031bdb73..8b926e0d6 100644
--- a/roundcubemail/program/include/bugs.inc
+++ b/roundcubemail/program/include/bugs.inc
@@ -73,7 +73,7 @@ function log_bug($arg_arr)
if ($CONFIG['debug_level'] & 1)
{
$post_query = ($_SERVER['REQUEST_METHOD'] == 'POST' ? '?_task='.urlencode($_POST['_task']).'&_action='.urlencode($_POST['_action']) : '');
- $log_entry = sprintf("%s Error: %s%s (%s %s)\n",
+ $log_entry = sprintf("%s Error: %s%s (%s %s)",
$program,
$arg_arr['message'],
$arg_arr['file'] ? sprintf(' in %s on line %d', $arg_arr['file'], $arg_arr['line']) : '',