summaryrefslogtreecommitdiff
path: root/plugins/filesystem_attachments/filesystem_attachments.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 /plugins/filesystem_attachments/filesystem_attachments.php
parente2927b05cab6a3fceeb0240c7a67676ecb251b9c (diff)
- use absolute paths to prevent errors when writing to logfiles from shutdown function
Diffstat (limited to 'plugins/filesystem_attachments/filesystem_attachments.php')
-rw-r--r--plugins/filesystem_attachments/filesystem_attachments.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/filesystem_attachments/filesystem_attachments.php b/plugins/filesystem_attachments/filesystem_attachments.php
index dce2de293..d5f555311 100644
--- a/plugins/filesystem_attachments/filesystem_attachments.php
+++ b/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')) {