git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3124
7612ce4b-ef26-0410-bec9-
ea0150e637f0
}
if (!@rename($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) {
- if (!@copy($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) {
+ if (function_exists("move_uploaded_file")) {
+ if (!@move_uploaded_file($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) {
return true;
- }
+ }
+ } else {
+
+ if (!@copy($HTTP_POST_FILES['attachfile']['tmp_name'], $full_localfilename)) {
+ return true;
+ }
+ }
+
}
$newAttachment['localfilename'] = $localfilename;