summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail/upload.inc
diff options
context:
space:
mode:
authorroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2005-10-04 20:28:01 +0000
committerroundcube <roundcube@208e9e7b-5314-0410-a742-e7e81cd9613c>2005-10-04 20:28:01 +0000
commit083b33000fa063e11863e0b1f68e586adf4e1384 (patch)
treed16389e4933e5a657d30f9084b351f73e25cbd52 /roundcubemail/program/steps/mail/upload.inc
parent3b931f067e057d72ab715bca65975875223dab0e (diff)
Added new languages, hierarchical folder tree and attachments in forwarded messages
git-svn-id: https://svn.roundcube.net/trunk@20 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/upload.inc')
-rw-r--r--roundcubemail/program/steps/mail/upload.inc14
1 files changed, 3 insertions, 11 deletions
diff --git a/roundcubemail/program/steps/mail/upload.inc b/roundcubemail/program/steps/mail/upload.inc
index 3ae88fad6..308ec796e 100644
--- a/roundcubemail/program/steps/mail/upload.inc
+++ b/roundcubemail/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 = '';