
|
If you were logged in you would be able to see more operations.
|
|
|
|
if (acceptFile(files[0], contentType[0], inputName, validation, ac.getLocale())) {
should be:
if (acceptFile(files[index], contentType[index], inputName, validation, ac.getLocale())) {
Otherwise, if they are uploading an array of 5 files, we are actually going to just check the first one 5 times.
|
|
Description
|
if (acceptFile(files[0], contentType[0], inputName, validation, ac.getLocale())) {
should be:
if (acceptFile(files[index], contentType[index], inputName, validation, ac.getLocale())) {
Otherwise, if they are uploading an array of 5 files, we are actually going to just check the first one 5 times.
|
Show » |
|