forked from extern/egroupware
* Filemanager: Firefox 3.5 gives error "Theres already a directory with that name" when trying to upload a file
fix works now for FF 3.5 AND FF 7+
This commit is contained in:
parent
8fdb682c90
commit
7aeb483fcc
@ -463,7 +463,7 @@ function check_files(upload)
|
|||||||
{
|
{
|
||||||
for(var i = 0; i < upload.files.length; ++i)
|
for(var i = 0; i < upload.files.length; ++i)
|
||||||
{
|
{
|
||||||
files.push(upload.files[i].name);
|
files.push(upload.files[i].name || upload.files[i].fileName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (upload.value)
|
else if (upload.value)
|
||||||
|
Loading…
Reference in New Issue
Block a user