filepond-server-php
filepond-server-php copied to clipboard
Fixed there are the same enty name bug
If there are the same entry name with file input's name, upload data in file input will be ignored.
It's unclear what this will fix, please elaborate
<input name="filepond" type="file" />
<input name="filepond" type="text" />
or
FilePond.setOptions({
server: {
process: {
method: "POST",
ondata: (formData) => {
formData.append("filepond", "buggy");
return formData;
}
}
})