diff options
author | thomascube <thomas@roundcube.net> | 2005-10-04 20:28:01 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2005-10-04 20:28:01 +0000 |
commit | 597170feb25f5c2e5a90a9c0b1fd62001f169afb (patch) | |
tree | bd34ef48a6c0003dcfbc2047e290f00fdd22fd3a /program/steps/mail/upload.inc | |
parent | 6dc0269fcc9f11fbd53da1fb647237ab73cf394d (diff) |
Added new languages, hierarchical folder tree and attachments in forwarded messages
Diffstat (limited to 'program/steps/mail/upload.inc')
-rw-r--r-- | program/steps/mail/upload.inc | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/program/steps/mail/upload.inc b/program/steps/mail/upload.inc index 3ae88fad6..308ec796e 100644 --- a/program/steps/mail/upload.inc +++ b/program/steps/mail/upload.inc @@ -26,21 +26,13 @@ if (!$_SESSION['compose']) } -if (strlen($CONFIG['temp_dir'])) - $temp_dir = $CONFIG['temp_dir'].(!eregi('\/$', $CONFIG['temp_dir']) ? '/' : '').$_SESSION['compose']['id']; +// create temp dir for file uploads +$temp_dir = rcmail_create_compose_tempdir(); + if (!is_array($_SESSION['compose']['attachments'])) - { $_SESSION['compose']['attachments'] = array(); - // create temp-dir for uploaded attachments - if ($CONFIG['temp_dir'] && is_writeable($CONFIG['temp_dir'])) - { - mkdir($temp_dir); - $_SESSION['compose']['temp_dir'] = $temp_dir; - } - } - $response = ''; |