From 40deec8be78789a5386fd1b5b12f791e7249edab Mon Sep 17 00:00:00 2001 From: thomascube Date: Sat, 20 Sep 2008 12:57:18 +0000 Subject: Add some post parameters to error log entry --- program/include/bugs.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/program/include/bugs.inc b/program/include/bugs.inc index f7a1fd55a..56b88c631 100644 --- a/program/include/bugs.inc +++ b/program/include/bugs.inc @@ -72,6 +72,7 @@ function log_bug($arg_arr) // write error to local log file 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", date("d-M-Y H:i:s O", mktime()), $program, @@ -79,7 +80,7 @@ function log_bug($arg_arr) $arg_arr['file'], $arg_arr['line'], $_SERVER['REQUEST_METHOD'], - $_SERVER['REQUEST_URI']); + $_SERVER['REQUEST_URI'] . $post_query); if (empty($CONFIG['log_dir'])) $CONFIG['log_dir'] = INSTALL_PATH.'logs'; -- cgit v1.2.3