* 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:
Ralf Becker 2011-11-18 11:59:31 +00:00
parent 8fdb682c90
commit 7aeb483fcc

View File

@ -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)