diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-12-02 10:48:06 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-12-02 10:48:06 +0000 |
| commit | 140ce1c34e9e686212e40f315d5012da8709716f (patch) | |
| tree | 423aa023a2bf030e78bc18de3ad395ceb8dd099e /roundcubemail/plugins | |
| parent | 11551f6b4d0084736959435828e85f733d26ea9a (diff) | |
- use absolute paths to prevent errors when writing to logfiles from shutdown function
git-svn-id: https://svn.roundcube.net/trunk@3148 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/plugins')
| -rw-r--r-- | roundcubemail/plugins/filesystem_attachments/filesystem_attachments.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/roundcubemail/plugins/filesystem_attachments/filesystem_attachments.php b/roundcubemail/plugins/filesystem_attachments/filesystem_attachments.php index dce2de293..d5f555311 100644 --- a/roundcubemail/plugins/filesystem_attachments/filesystem_attachments.php +++ b/roundcubemail/plugins/filesystem_attachments/filesystem_attachments.php @@ -52,8 +52,7 @@ class filesystem_attachments extends rcube_plugin $rcmail = rcmail::get_instance(); // use common temp dir for file uploads - // #1484529: we need absolute path on Windows for move_uploaded_file() - $temp_dir = realpath($rcmail->config->get('temp_dir')); + $temp_dir = $rcmail->config->get('temp_dir'); $tmpfname = tempnam($temp_dir, 'rcmAttmnt'); if (move_uploaded_file($args['path'], $tmpfname) && file_exists($tmpfname)) { @@ -77,7 +76,7 @@ class filesystem_attachments extends rcube_plugin if (!$args['path']) { $rcmail = rcmail::get_instance(); - $temp_dir = unslashify($rcmail->config->get('temp_dir')); + $temp_dir = $rcmail->config->get('temp_dir'); $tmp_path = tempnam($temp_dir, 'rcmAttmnt'); if ($fp = fopen($tmp_path, 'w')) { |
