aboutsummaryrefslogtreecommitdiff
path: root/mod/file
diff options
context:
space:
mode:
authorSteve Clay <steve@mrclay.org>2012-10-10 18:22:31 -0700
committerSteve Clay <steve@mrclay.org>2012-10-10 18:22:31 -0700
commitd134beadb79fcc90a75bda8bbcbfb9987b27470c (patch)
tree3228eb49db250d8d1a5a0b36eb58c7051b4d8bbb /mod/file
parentec68ded7bc64e64d27f9c78efdfa6a7d3d25d14e (diff)
parent5efa9426d40326b8d31c152dd2a433076b490308 (diff)
downloadelgg-d134beadb79fcc90a75bda8bbcbfb9987b27470c.tar.gz
elgg-d134beadb79fcc90a75bda8bbcbfb9987b27470c.tar.bz2
Merge pull request #381 from mrclay/4593-plaintext-titles
Fixes #4593: All titles are HTML-escaped plain text
Diffstat (limited to 'mod/file')
-rw-r--r--mod/file/actions/file/upload.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/file/actions/file/upload.php b/mod/file/actions/file/upload.php
index d72d04eb7..d6dce2528 100644
--- a/mod/file/actions/file/upload.php
+++ b/mod/file/actions/file/upload.php
@@ -6,7 +6,7 @@
*/
// Get variables
-$title = get_input("title");
+$title = htmlspecialchars(get_input('title', '', false), ENT_QUOTES, 'UTF-8');
$desc = get_input("description");
$access_id = (int) get_input("access_id");
$container_guid = (int) get_input('container_guid', 0);
@@ -44,7 +44,7 @@ if ($new_file) {
// if no title on new upload, grab filename
if (empty($title)) {
- $title = $_FILES['upload']['name'];
+ $title = htmlspecialchars($_FILES['upload']['name'], ENT_QUOTES, 'UTF-8');
}
} else {