drupal_set_message(t('The file %file could not be saved, because it exceeds %maxsize, the maximum allowed size for uploads.',array('%file'=>$source,'%maxsize'=>format_size(file_upload_max_size()))),'error');
drupal_set_message(t('The file %file could not be saved, because it exceeds %maxsize, the maximum allowed size for uploads.',array('%file'=>$_FILES['files']['name'][$source],'%maxsize'=>format_size(file_upload_max_size()))),'error');
returnFALSE;
caseUPLOAD_ERR_PARTIAL:
caseUPLOAD_ERR_NO_FILE:
drupal_set_message(t('The file %file could not be saved, because the upload did not complete.',array('%file'=>$source)),'error');
drupal_set_message(t('The file %file could not be saved, because the upload did not complete.',array('%file'=>$_FILES['files']['name'][$source])),'error');