mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
fixed IE 11 names almost all files "blob"
This commit is contained in:
parent
29a8abb13f
commit
837a84b330
@ -113,7 +113,7 @@ class etemplate_widget_file extends etemplate_widget
|
||||
protected static function process_uploaded_file($field, Array &$file, $mime, Array &$file_data)
|
||||
{
|
||||
// Chunks get mangled a little
|
||||
if($file['name'] == 'blob' && $file['type'] == 'application/octet-stream')
|
||||
if($file['name'] == 'blob')
|
||||
{
|
||||
$file['name'] = $_POST['resumableFilename'];
|
||||
$file['type'] = $_POST['resumableType'];
|
||||
@ -133,7 +133,7 @@ class etemplate_widget_file extends etemplate_widget
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Resumable / chunked uploads
|
||||
// init the destination file (format <filename.ext>.part<#chunk>
|
||||
// the file is stored in a temporary directory
|
||||
@ -149,7 +149,7 @@ class etemplate_widget_file extends etemplate_widget
|
||||
// move the temporary file
|
||||
if (!move_uploaded_file($file['tmp_name'], $dest_file))
|
||||
{
|
||||
$file_date[$file['name']] = 'Error saving (move_uploaded_file) chunk '.(int)$_POST['resumableChunkNumber'].' for file '.$_POST['resumableFilename'];
|
||||
$file_data[$file['name']] = 'Error saving (move_uploaded_file) chunk '.(int)$_POST['resumableChunkNumber'].' for file '.$_POST['resumableFilename'];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user