From 5efa9426d40326b8d31c152dd2a433076b490308 Mon Sep 17 00:00:00 2001 From: Steve Clay Date: Sun, 9 Sep 2012 01:52:09 -0400 Subject: Fixes #4593: All titles are HTML-escaped plain text --- mod/file/actions/file/upload.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod/file') 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 { -- cgit v1.2.3