summaryrefslogtreecommitdiff
path: root/program/include/bugs.inc
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2008-10-30 09:15:01 +0000
committeralecpl <alec@alec.pl>2008-10-30 09:15:01 +0000
commitd245963846993a5ab5ac0572f7e988f0865c678e (patch)
treefd987ed90e48f14629320190ac65f5b24f07d927 /program/include/bugs.inc
parent0089fd8dd52d406ecd9f47d0643296a2ca2ee258 (diff)
- fix log_bug() for empty 'file' parameter
Diffstat (limited to 'program/include/bugs.inc')
-rw-r--r--program/include/bugs.inc5
1 files changed, 2 insertions, 3 deletions
diff --git a/program/include/bugs.inc b/program/include/bugs.inc
index 56b88c631..869022bcf 100644
--- a/program/include/bugs.inc
+++ b/program/include/bugs.inc
@@ -73,12 +73,11 @@ 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] %s Error: %s in %s on line %d (%s %s)\n",
+ $log_entry = sprintf("[%s] %s Error: %s%s (%s %s)\n",
date("d-M-Y H:i:s O", mktime()),
$program,
$arg_arr['message'],
- $arg_arr['file'],
- $arg_arr['line'],
+ $arg_arr['file'] ? sprintf(' in %s on line %d', $arg_arr['file'], $arg_arr['line']) : '',
$_SERVER['REQUEST_METHOD'],
$_SERVER['REQUEST_URI'] . $post_query);