* 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 12:00:00 +00:00
parent fd016edb83
commit 4e5a8dbc86

View File

@ -463,7 +463,7 @@ function check_files(upload)
{
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)