diff options
author | cash <cash.costello@gmail.com> | 2011-10-10 20:15:09 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-10-10 20:15:09 -0400 |
commit | 1e4c47b736718ecb18a4367657e147e412fab06e (patch) | |
tree | 0d3767c62cbf1117386c46b94bb992b3f5e097d4 | |
parent | f09ec105ae2b73e4a56b04ce87abc5c8d4254158 (diff) | |
download | elgg-1e4c47b736718ecb18a4367657e147e412fab06e.tar.gz elgg-1e4c47b736718ecb18a4367657e147e412fab06e.tar.bz2 |
Refs #3919 merged file upload failure check to master
-rw-r--r-- | mod/file/actions/file/upload.php | 6 | ||||
-rw-r--r-- | mod/file/languages/en.php | 2 |
2 files changed, 6 insertions, 2 deletions
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); diff --git a/mod/file/languages/en.php b/mod/file/languages/en.php index aa30084a9..96fbd1c48 100644 --- a/mod/file/languages/en.php +++ b/mod/file/languages/en.php @@ -100,7 +100,7 @@ $english = array( 'file:downloadfailed' => "Sorry; this file is not available at this time.", 'file:deletefailed' => "Your file could not be deleted at this time.", 'file:noaccess' => "You do not have permissions to change this file", - 'file:cannotload' => "There was an error loading the file", + 'file:cannotload' => "There was an error uploading the file", 'file:nofile' => "You must select a file", ); |