From 1e4c47b736718ecb18a4367657e147e412fab06e Mon Sep 17 00:00:00 2001 From: cash Date: Mon, 10 Oct 2011 20:15:09 -0400 Subject: Refs #3919 merged file upload failure check to master --- mod/file/actions/file/upload.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'mod/file/actions') diff --git a/mod/file/actions/file/upload.php b/mod/file/actions/file/upload.php index ee2889b4c..3edc87952 100644 --- a/mod/file/actions/file/upload.php +++ b/mod/file/actions/file/upload.php @@ -19,6 +19,11 @@ if ($container_guid == 0) { elgg_make_sticky_form('file'); +// check if upload failed +if (!empty($_FILES['upload']['name']) && $_FILES['upload']['error'] != 0) { + register_error(elgg_echo('file:cannotload')); + forward(REFERER); +} // check whether this is a new file or an edit $new_file = true; @@ -29,7 +34,6 @@ if ($guid > 0) { if ($new_file) { // must have a file if a new file upload if (empty($_FILES['upload']['name'])) { - $error = elgg_echo('file:nofile'); register_error($error); forward(REFERER); -- cgit v1.2.3