diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-06-24 03:59:22 -0700 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-06-24 03:59:22 -0700 |
commit | 344e47862b1f39eca19e39a000f97f799cc87a12 (patch) | |
tree | 136b4f69afcc60da387bb84fbc74d7a049b32e42 /mod/file/actions | |
parent | 60d69e25433b7b00d9c7f20db43b71c8978560c9 (diff) | |
parent | d9485cb8e8982c668d7aa374f80ad2fa4c93753d (diff) | |
download | elgg-344e47862b1f39eca19e39a000f97f799cc87a12.tar.gz elgg-344e47862b1f39eca19e39a000f97f799cc87a12.tar.bz2 |
Merge pull request #33 from mcloughlin3/master
Fix bug #1932
Diffstat (limited to 'mod/file/actions')
-rw-r--r-- | mod/file/actions/file/upload.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/file/actions/file/upload.php b/mod/file/actions/file/upload.php index 5d5c28bee..c5fe763cb 100644 --- a/mod/file/actions/file/upload.php +++ b/mod/file/actions/file/upload.php @@ -106,9 +106,10 @@ if (isset($_FILES['upload']['name']) && !empty($_FILES['upload']['name'])) { $file->originalfilename = $_FILES['upload']['name']; $file->simpletype = file_get_simple_type($_FILES['upload']['type']); + // Open the file to guarantee the directory exists $file->open("write"); - $file->write(get_uploaded_file('upload')); $file->close(); + move_uploaded_file($_FILES['upload']['tmp_name'], $file->getFilenameOnFilestore()); $guid = $file->save(); |