summaryrefslogtreecommitdiff
path: root/program/include/rcube_config.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-12-02 10:48:06 +0000
committeralecpl <alec@alec.pl>2009-12-02 10:48:06 +0000
commitd079afd44fdfca34631ca6d0c85d406aee25b3bd (patch)
tree6d79fb2f8dbe56641f8e7f961ba2aeed715f05fe /program/include/rcube_config.php
parente2927b05cab6a3fceeb0240c7a67676ecb251b9c (diff)
- use absolute paths to prevent errors when writing to logfiles from shutdown function
Diffstat (limited to 'program/include/rcube_config.php')
-rw-r--r--program/include/rcube_config.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php
index 0aa6f8c58..e30b625d3 100644
--- a/program/include/rcube_config.php
+++ b/program/include/rcube_config.php
@@ -68,9 +68,9 @@ class rcube_config
$this->prop['skin'] = 'default';
// fix paths
- $this->prop['log_dir'] = $this->prop['log_dir'] ? unslashify($this->prop['log_dir']) : INSTALL_PATH . 'logs';
- $this->prop['temp_dir'] = $this->prop['temp_dir'] ? unslashify($this->prop['temp_dir']) : INSTALL_PATH . 'temp';
-
+ $this->prop['log_dir'] = $this->prop['log_dir'] ? realpath(unslashify($this->prop['log_dir'])) : INSTALL_PATH . 'logs';
+ $this->prop['temp_dir'] = $this->prop['temp_dir'] ? realpath(unslashify($this->prop['temp_dir'])) : INSTALL_PATH . 'temp';
+
// fix default imap folders encoding
foreach (array('drafts_mbox', 'junk_mbox', 'sent_mbox', 'trash_mbox') as $folder)
$this->prop[$folder] = rcube_charset_convert($this->prop[$folder], RCMAIL_CHARSET, 'UTF7-IMAP');