Skip to content
Snippets Groups Projects
Commit 99766eef authored by Andreas Gohr's avatar Andreas Gohr
Browse files

don't check filesize but rely on error on upload FS#1716

Ignore-this: adff36f3e49963a6682b5faabf6cb63e

darcs-hash:20091115153119-7ad00-2c20c420faeea08c113a76acc05917621f361880.gz
parent 86d51583
No related branches found
No related tags found
No related merge requests found
......@@ -239,11 +239,8 @@ function media_upload($ns,$auth){
$file = $_FILES['upload'];
if(empty($id)) $id = $file['name'];
// check for data
if(!@filesize($file['tmp_name'])){
msg('No data uploaded. Disk full?',-1);
return false;
}
// check for errors (messages are done in lib/exe/mediamanager.php)
if($file['error']) return false;
// check extensions
list($fext,$fmime,$dl) = mimetype($file['name']);
......
......@@ -54,14 +54,17 @@
}
// give info on PHP catched upload errors
if($_FILES['upload']['error']) switch($_FILES['upload']['error']){
case 1:
case 2:
msg(sprintf($lang['uploadsize'],
filesize_h(php_to_byte(ini_get('upload_max_filesize')))),-1);
break;
default:
msg($lang['uploadfail'],-1);
if($_FILES['upload']['error']){
switch($_FILES['upload']['error']){
case 1:
case 2:
msg(sprintf($lang['uploadsize'],
filesize_h(php_to_byte(ini_get('upload_max_filesize')))),-1);
break;
default:
msg($lang['uploadfail'].' ('.$_FILES['upload']['error'].')',-1);
}
unset($_FILES['upload']);
}
// handle upload
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment