aboutsummaryrefslogtreecommitdiff
path: root/mod/file
diff options
context:
space:
mode:
Diffstat (limited to 'mod/file')
-rw-r--r--mod/file/actions/upload.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/file/actions/upload.php b/mod/file/actions/upload.php
index e515c73e0..5a22b1231 100644
--- a/mod/file/actions/upload.php
+++ b/mod/file/actions/upload.php
@@ -87,9 +87,9 @@
// use same filename on the disk - ensures thumbnails are overwritten
$filestorename = $file->getFilename();
- $filestorename = substr($filestorename, strlen($prefix));
+ $filestorename = elgg_substr($filestorename, elgg_strlen($prefix));
} else {
- $filestorename = strtolower(time().$_FILES['upload']['name']);
+ $filestorename = elgg_strtolower(time().$_FILES['upload']['name']);
}
$file->setFilename($prefix.$filestorename);
@@ -139,6 +139,9 @@
unset($thumblarge);
}
}
+ } else {
+ // not saving a file but still need to save the entity to push attributes to database
+ $file->save();
}
// make sure session cache is cleared