diff options
author | thomascube <thomas@roundcube.net> | 2005-11-14 23:55:46 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-11-14 23:55:46 +0000 |
commit | fd8c5061097f156da55a9cee8972aa4f13daa7b1 (patch) | |
tree | b1e506f5cb480bb4eb787e6f64622b29a400f631 /program/include/bugs.inc | |
parent | ecf7590cb84bb944d4adcd46124fbf0d081848f3 (diff) |
SMTPS support and minor bugfixes
Diffstat (limited to 'program/include/bugs.inc')
-rw-r--r-- | program/include/bugs.inc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/program/include/bugs.inc b/program/include/bugs.inc index d67281ef3..c9116d5a2 100644 --- a/program/include/bugs.inc +++ b/program/include/bugs.inc @@ -63,8 +63,12 @@ function log_bug($arg_arr) $arg_arr['message'], $arg_arr['file'], $arg_arr['line']); - - if ($fp = fopen($INSTALL_PATH.'logs/errors', 'a')) + + if (empty($CONFIG['log_dir'])) + $CONFIG['log_dir'] = $INSTALL_PATH.'logs'; + + if ($fp = fopen($CONFIG['log_dir'].'/errors', 'a')) + { fwrite($fp, $log_entry); fclose($fp); |