From d079afd44fdfca34631ca6d0c85d406aee25b3bd Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Wed, 02 Dec 2009 05:48:06 -0500 Subject: [PATCH] - use absolute paths to prevent errors when writing to logfiles from shutdown function --- program/include/rcube_config.php | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index 0aa6f8c..e30b625 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -68,9 +68,9 @@ $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'); -- Gitblit v1.9.1